Symbol: BN_secure_new
crypto/openssl/crypto/asn1/x_bignum.c
75
*pval = (ASN1_VALUE *)BN_secure_new();
crypto/openssl/crypto/bn/bn_lib.c
321
t = BN_get_flags(a, BN_FLG_SECURE) ? BN_secure_new() : BN_new();
crypto/openssl/crypto/dh/dh_backend.c
220
if ((privkey_bn = BN_secure_new()) == NULL
crypto/openssl/crypto/dh/dh_key.c
296
priv_key = BN_secure_new();
crypto/openssl/crypto/dsa/dsa_backend.c
152
if ((dsa_privkey = BN_secure_new()) == NULL
crypto/openssl/crypto/dsa/dsa_key.c
157
if ((priv_key = BN_secure_new()) == NULL)
crypto/openssl/crypto/ec/ec_backend.c
469
if ((priv_key = BN_secure_new()) == NULL)
crypto/openssl/crypto/ec/ec_key.c
1046
eckey->priv_key = BN_secure_new();
crypto/openssl/crypto/ec/ec_key.c
316
priv_key = BN_secure_new();
crypto/openssl/crypto/ec/ec_key.c
415
eckey->priv_key = BN_secure_new();
crypto/openssl/crypto/ec/ecdsa_ossl.c
168
k = BN_secure_new(); /* this value is later returned in *kinvp */
crypto/openssl/crypto/ec/ecp_s390x_nistp.c
157
k = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_gen.c
191
dmp1 = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_gen.c
194
dmq1 = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_gen.c
334
if (!rsa->d && ((rsa->d = BN_secure_new()) == NULL))
crypto/openssl/crypto/rsa/rsa_gen.c
339
if (!rsa->p && ((rsa->p = BN_secure_new()) == NULL))
crypto/openssl/crypto/rsa/rsa_gen.c
342
if (!rsa->q && ((rsa->q = BN_secure_new()) == NULL))
crypto/openssl/crypto/rsa/rsa_mp.c
38
if ((pinfo->r = BN_secure_new()) == NULL)
crypto/openssl/crypto/rsa/rsa_mp.c
40
if ((pinfo->d = BN_secure_new()) == NULL)
crypto/openssl/crypto/rsa/rsa_mp.c
42
if ((pinfo->t = BN_secure_new()) == NULL)
crypto/openssl/crypto/rsa/rsa_mp.c
44
if ((pinfo->pp = BN_secure_new()) == NULL)
crypto/openssl/crypto/rsa/rsa_mp.c
81
pinfo->pp = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
113
rsa->p = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
115
rsa->q = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
273
rsa->d = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
295
rsa->dmp1 = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
304
rsa->dmq1 = BN_secure_new();
crypto/openssl/crypto/rsa/rsa_sp800_56b_gen.c
313
rsa->iqmp = BN_secure_new();
crypto/openssl/include/openssl/bn.h
238
BIGNUM *BN_secure_new(void);
crypto/openssl/test/param_build_test.c
114
|| !TEST_ptr(nbn = BN_secure_new())
crypto/openssl/test/param_build_test.c
266
|| !TEST_ptr(zbn = BN_secure_new())
crypto/openssl/test/param_build_test.c
268
|| !TEST_ptr(pbn = BN_secure_new())
crypto/openssl/test/param_build_test.c
271
|| !TEST_ptr(nbn = BN_secure_new())
crypto/openssl/test/param_build_test.c
463
|| !TEST_ptr(bn_priv = BN_secure_new())
crypto/openssl/test/param_build_test.c
60
|| !TEST_ptr(zbn = BN_secure_new())