Searched refs:BN_is_prime_ex (Results 1 – 13 of 13) sorted by relevance
/third_party/openssl/crypto/dh/ |
D | dh_check.c | 141 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/ |
D | rsa_chk.c | 65 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/ |
D | BN_generate_prime.pod | 5 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
|
D | RSA_check_key.pod | 32 manner as L<BN_is_prime_ex(3)>. 68 L<BN_is_prime_ex(3)>,
|
/third_party/openssl/crypto/bn/ |
D | bn_depr.c | 55 return BN_is_prime_ex(a, checks, ctx_passed, &cb);
|
D | bn_prime.c | 145 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed, in BN_is_prime_ex() function
|
/third_party/openssl/apps/ |
D | prime.c | 124 BN_is_prime_ex(bn, checks, NULL, NULL) in prime_main()
|
D | s_client.c | 282 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/ |
D | ectest.c | 289 || !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/ |
D | bn.h | 345 int BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, BN_GENCB *cb);
|
/third_party/grpc/src/boringssl/ |
D | boringssl_prefix_symbols.h | 926 #define BN_is_prime_ex BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, BN_is_prime_ex) macro
|
/third_party/openssl/util/ |
D | libcrypto.num | 3657 BN_is_prime_ex 3612 1_1_0 EXIST::FUNCTION:
|
/third_party/openssl/ |
D | CHANGES | 6734 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()
|