summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-21 00:00:12 +0000
committerUlf Möller <ulf@openssl.org>2000-01-21 00:00:12 +0000
commitb25c8db87245e00cf3749067503a08c0ed3b769a (patch)
tree459321f9e5efd808d7014f37b8c0bd0a1edeb594 /crypto
parentb838465135831bb1a23c10a59c89c21948da48df (diff)
AFAICS lst1 stands for "lshift test" not "list".
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bntest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c
index d50d958bb3..78fd325383 100644
--- a/crypto/bn/bntest.c
+++ b/crypto/bn/bntest.c
@@ -95,7 +95,7 @@ static int results=0;
#include "bss_file.c"
#endif
-static unsigned char list1[]="\xC6\x4F\x43\x04\x2A\xEA\xCA\x6E\x58\x36\x80\x5B\xE8\xC9"
+static unsigned char lst[]="\xC6\x4F\x43\x04\x2A\xEA\xCA\x6E\x58\x36\x80\x5B\xE8\xC9"
"\x9B\x04\x5D\x48\x36\xC2\xFD\x16\xC9\x64\xF0";
static const char rnd_seed[] = "string to make the random number generator think it has entropy";
@@ -162,7 +162,7 @@ int main(int argc, char *argv[])
fflush(stdout);
fprintf(stderr,"test BN_lshift (fixed)\n");
- if (!test_lshift(out,ctx,BN_bin2bn(list1,sizeof(list1)-1,NULL)))
+ if (!test_lshift(out,ctx,BN_bin2bn(lst,sizeof(lst)-1,NULL)))
goto err;
fflush(stdout);