Use the private RNG for data that is not public
[openssl.git] / crypto / bn / bn_sqrt.c
index 37cdaf87d58bd791475ef801dbdd260720b29264..be8bd1238b621723f2e98ef93b440223b3936b31 100644 (file)
@@ -179,7 +179,7 @@ BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
             if (!BN_set_word(y, i))
                 goto end;
         } else {
-            if (!BN_rand(y, BN_num_bits(p), 0, 0))
+            if (!BN_priv_rand(y, BN_num_bits(p), 0, 0))
                 goto end;
             if (BN_ucmp(y, p) >= 0) {
                 if (!(p->neg ? BN_add : BN_sub) (y, y, p))