*** empty log message ***
This commit is contained in:
parent
1b199605c4
commit
1070e0e2ee
@ -62,7 +62,7 @@ bn_prime.h: bn_prime.pl
|
||||
divtest: divtest.c ../../libcrypto.a
|
||||
cc -I../../include divtest.c -o divtest ../../libcrypto.a
|
||||
|
||||
bnbug: bnbug.c ../../libcrypto.a
|
||||
bnbug: bnbug.c ../../libcrypto.a top
|
||||
cc -g -I../../include bnbug.c -o bnbug ../../libcrypto.a
|
||||
|
||||
lib: $(LIBOBJ)
|
||||
|
@ -325,10 +325,8 @@ void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n)
|
||||
{
|
||||
int i;
|
||||
fprintf(o, "%s=", a);
|
||||
for (i=n;i>=0;i--)
|
||||
{
|
||||
fprintf(o, "[%08lX]", b[i]);
|
||||
}
|
||||
for (i=n-1;i>=0;i--)
|
||||
fprintf(o, "%08lX", b[i]);
|
||||
fprintf(o, "\n");
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user