Include rand.h so RAND_pseudo_bytes may be declared.
[openssl.git] / crypto / bn / divtest.c
index bb301680c07400193103759965b4986929262eb3..13ba86e3c4e1433b8a2320a536d2616d84212cab 100644 (file)
@@ -1,19 +1,21 @@
 #include <openssl/bn.h>
+#include <openssl/rand.h>
 
-int rand(n)
+static int rand(n)
 {
     unsigned char x[2];
-    RAND_bytes(&x,2);
+    RAND_pseudo_bytes(x,2);
     return (x[0] + 2*x[1]);
 }
 
-void bug(char *m, BIGNUM *a, BIGNUM *b)
+static void bug(char *m, BIGNUM *a, BIGNUM *b)
 {
     printf("%s!\na=",m);
     BN_print_fp(stdout, a);
     printf("\nb=");
     BN_print_fp(stdout, b);
     printf("\n");
+    fflush(stdout);
 }
 
 main()
@@ -24,8 +26,8 @@ main()
     BN_CTX *ctx=BN_CTX_new();
 
     for(;;) {
-       BN_rand(a,rand(),0,0);
-       BN_rand(b,rand(),0,0);
+       BN_pseudo_rand(a,rand(),0,0);
+       BN_pseudo_rand(b,rand(),0,0);
        if (BN_is_zero(b)) continue;
 
        BN_RECP_CTX_set(recp,b,ctx);