Searched refs:ossl_rsa_check_prime_factor (Results 1 – 3 of 3) sorted by relevance
/freebsd/crypto/openssl/crypto/rsa/ |
H A D | rsa_sp800_56b_check.c | 136 int ossl_rsa_check_prime_factor(BIGNUM *p, BIGNUM *e, int nbits, BN_CTX *ctx) in ossl_rsa_check_prime_factor() function 428 ret = ossl_rsa_check_prime_factor(rsa->p, rsa->e, nbits, ctx) 429 && ossl_rsa_check_prime_factor(rsa->q, rsa->e, nbits, ctx)
|
H A D | rsa_local.h | 174 int ossl_rsa_check_prime_factor(BIGNUM *p, BIGNUM *e, int nbits, BN_CTX *ctx);
|
/freebsd/crypto/openssl/test/ |
H A D | rsa_sp800_56b_test.c | 201 && TEST_false(ossl_rsa_check_prime_factor(bn_p1, e, 72, ctx)) in test_check_prime_factor() 203 && TEST_true(ossl_rsa_check_prime_factor(bn_p2, e, 72, ctx)) in test_check_prime_factor() 206 && TEST_false(ossl_rsa_check_prime_factor(p, e, 72, ctx)) in test_check_prime_factor() 209 && TEST_false(ossl_rsa_check_prime_factor(bn_p3, e, 72, ctx)); in test_check_prime_factor()
|