提交 1070e0e2 编写于 作者: U Ulf Möller

*** empty log message ***

上级 1b199605
......@@ -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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册