Home
last modified time | relevance | path

Searched refs:BN_is_prime_ex (Results 1 – 13 of 13) sorted by relevance

/third_party/openssl/crypto/dh/
Ddh_check.c141 r = BN_is_prime_ex(dh->q, DH_NUMBER_ITERATIONS_FOR_PRIME, ctx, NULL); in DH_check()
155 r = BN_is_prime_ex(dh->p, DH_NUMBER_ITERATIONS_FOR_PRIME, ctx, NULL); in DH_check()
163 r = BN_is_prime_ex(t1, DH_NUMBER_ITERATIONS_FOR_PRIME, ctx, NULL); in DH_check()
/third_party/openssl/crypto/rsa/
Drsa_chk.c65 if (BN_is_prime_ex(key->p, BN_prime_checks, NULL, cb) != 1) { in RSA_check_key_ex()
71 if (BN_is_prime_ex(key->q, BN_prime_checks, NULL, cb) != 1) { in RSA_check_key_ex()
79 if (BN_is_prime_ex(pinfo->r, BN_prime_checks, NULL, cb) != 1) { in RSA_check_key_ex()
/third_party/openssl/doc/man3/
DBN_generate_prime.pod5 BN_generate_prime_ex, BN_is_prime_ex, BN_is_prime_fasttest_ex, BN_GENCB_call,
17 int BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, BN_GENCB *cb);
102 BN_is_prime_ex() and BN_is_prime_fasttest_ex() test if the number B<p> is
113 Both BN_is_prime_ex() and BN_is_prime_fasttest_ex() perform a Miller-Rabin
160 can similarly be compared to BN_is_prime_ex() and
167 BN_is_prime_ex(), BN_is_prime_fasttest_ex(), BN_is_prime() and
DRSA_check_key.pod32 manner as L<BN_is_prime_ex(3)>.
68 L<BN_is_prime_ex(3)>,
/third_party/openssl/crypto/bn/
Dbn_depr.c55 return BN_is_prime_ex(a, checks, ctx_passed, &cb);
Dbn_prime.c145 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, in BN_is_prime_ex() function
/third_party/openssl/apps/
Dprime.c124 BN_is_prime_ex(bn, checks, NULL, NULL) in prime_main()
Ds_client.c282 BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 && in srp_Verify_N_and_g()
285 BN_is_prime_ex(p, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) == 1 && in srp_Verify_N_and_g()
/third_party/openssl/test/
Dectest.c289 || !TEST_int_eq(1, BN_is_prime_ex(p, BN_prime_checks, ctx, NULL)) in prime_field_tests()
329 || !TEST_int_eq(1, BN_is_prime_ex(p, BN_prime_checks, ctx, NULL)) in prime_field_tests()
368 || !TEST_int_eq(1, BN_is_prime_ex(p, BN_prime_checks, ctx, NULL)) in prime_field_tests()
407 || !TEST_int_eq(1, BN_is_prime_ex(p, BN_prime_checks, ctx, NULL)) in prime_field_tests()
448 || !TEST_int_eq(1, BN_is_prime_ex(p, BN_prime_checks, ctx, NULL)) in prime_field_tests()
495 || !TEST_int_eq(1, BN_is_prime_ex(p, BN_prime_checks, ctx, NULL)) in prime_field_tests()
1342 || !TEST_int_eq(1, BN_is_prime_ex(p, BN_prime_checks, ctx, NULL)) in nistp_single_test()
/third_party/openssl/include/openssl/
Dbn.h345 int BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, BN_GENCB *cb);
/third_party/grpc/src/boringssl/
Dboringssl_prefix_symbols.h926 #define BN_is_prime_ex BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, BN_is_prime_ex) macro
/third_party/openssl/util/
Dlibcrypto.num3657 BN_is_prime_ex 3612 1_1_0 EXIST::FUNCTION:
/third_party/openssl/
DCHANGES6734 return BN_is_prime_ex(some_bignum, BN_prime_checks, NULL, &cb);
6738 * my_callback should return 1 if it wants BN_is_prime_ex()