Searched refs:q1 (Results 1 – 10 of 10) sorted by relevance
/openssl/crypto/rsa/ |
H A D | rsa_sp800_56b_check.c | 27 BIGNUM *r = NULL, *p1 = NULL, *q1 = NULL; in ossl_rsa_check_crt_components() local 39 q1 = BN_CTX_get(ctx); in ossl_rsa_check_crt_components() 40 if (q1 != NULL) { in ossl_rsa_check_crt_components() 43 BN_set_flags(q1, BN_FLG_CONSTTIME); in ossl_rsa_check_crt_components() 53 && (BN_copy(q1, rsa->q) != NULL) in ossl_rsa_check_crt_components() 54 && BN_sub_word(q1, 1) in ossl_rsa_check_crt_components() 60 && (BN_cmp(rsa->dmq1, q1) < 0) in ossl_rsa_check_crt_components() 75 BN_clear(q1); in ossl_rsa_check_crt_components() 187 q1 = BN_CTX_get(ctx); in ossl_rsa_check_private_exponent() 214 BN_clear(q1); in ossl_rsa_check_private_exponent() [all …]
|
H A D | rsa_sp800_56b_gen.c | 64 BIGNUM *q1 = NULL, *q2 = NULL; in ossl_rsa_fips186_4_gen_prob_primes() local 79 q1 = test->q1; in ossl_rsa_fips186_4_gen_prob_primes() 127 if (!ossl_bn_rsa_fips186_4_gen_prob_primes(rsa->q, Xqo, q1, q2, Xq, Xq1, in ossl_rsa_fips186_4_gen_prob_primes() 241 BIGNUM *p1, *q1, *lcm, *p1q1, *gcd; in ossl_rsa_sp800_56b_derive_params_from_pq() local 244 q1 = BN_CTX_get(ctx); in ossl_rsa_sp800_56b_derive_params_from_pq() 252 BN_set_flags(q1, BN_FLG_CONSTTIME); in ossl_rsa_sp800_56b_derive_params_from_pq() 258 if (ossl_rsa_get_lcm(ctx, rsa->p, rsa->q, lcm, gcd, p1, q1, p1q1) != 1) in ossl_rsa_sp800_56b_derive_params_from_pq() 308 if (!BN_mod(rsa->dmq1, rsa->d, q1, ctx)) in ossl_rsa_sp800_56b_derive_params_from_pq() 338 BN_clear(q1); in ossl_rsa_sp800_56b_derive_params_from_pq()
|
H A D | rsa_acvp_test_params.c | 116 t->q1 = BN_new(); in ossl_rsa_acvp_test_set_params() 142 && !OSSL_PARAM_set_BN(p, t->q1)) in ossl_rsa_acvp_test_get_params() 162 BN_free(t->q1); in ossl_rsa_acvp_test_free()
|
H A D | rsa_local.h | 43 BIGNUM *q1; member 173 BIGNUM *lcm, BIGNUM *gcd, BIGNUM *p1, BIGNUM *q1,
|
H A D | rsa_x931g.c | 25 int RSA_X931_derive_ex(RSA *rsa, BIGNUM *p1, BIGNUM *p2, BIGNUM *q1, in RSA_X931_derive_ex() argument 76 if (!BN_X931_derive_prime_ex(rsa->q, q1, q2, in RSA_X931_derive_ex()
|
/openssl/crypto/aes/asm/ |
H A D | bsaes-armv8.pl | 1061 ldr q1, [x0], #16 1077 str q1, [x1], #16 1078 ldr q1, [x0], #16 1085 str q1, [x1], #16 1087 ldr q1, [x0], #16 1094 str q1, [x1], #16 1106 ldr q1, [x0], #16 1137 str q1, [x1], #16 1144 str q1, [x1] 1162 str q1, [x1], #16 [all …]
|
/openssl/doc/man7/ |
H A D | EVP_PKEY-RSA.pod | 170 "q1" and "q2" are determined from these values. 186 =item "q1" (B<OSSL_PKEY_PARAM_RSA_TEST_Q1>) <unsigned integer>
|
/openssl/test/ |
H A D | acvp_test.c | 1305 unsigned char *q = NULL, *q1 = NULL, *q2 = NULL; in rsa_keygen_test() local 1347 &q1, &q1_len)) in rsa_keygen_test() 1363 || !TEST_mem_eq(tst->q1, tst->q1_len, q1, q1_len) in rsa_keygen_test() 1373 test_output_memory("q1", q1, q1_len); in rsa_keygen_test() 1389 OPENSSL_free(q1); in rsa_keygen_test()
|
H A D | acvp_test.inc | 1184 const unsigned char *q1;
|
/openssl/include/openssl/ |
H A D | rsa.h | 280 BIGNUM *q1, BIGNUM *q2,
|
Completed in 23 milliseconds