Home
last modified time | relevance | path

Searched refs:dmq1 (Results 1 – 21 of 21) sorted by relevance

/openssl/test/
H A Drsa_test.c42 BN_bin2bn(dmq1, sizeof(dmq1)-1, NULL), \
79 static unsigned char dmq1[] = in key1() local
125 static unsigned char dmq1[] = in key2() local
188 static unsigned char dmq1[] = in key3() local
H A Drsa_mp_test.c99 static const unsigned char dmq1[] = variable
163 BN_bin2bn(dmq1, sizeof(dmq1) - 1, NULL), in key2048p3_v1()
221 || !TEST_ptr(num = BN_bin2bn(dmq1, sizeof(dmq1) - 1, NULL)) in key2048p3_v2()
H A Drsa_sp800_56b_test.c306 && TEST_BN_eq_word(key->dmq1, DQ) in test_check_crt_components()
316 && TEST_true(BN_set_word(key->dmq1, 1)) in test_check_crt_components()
318 && TEST_true(BN_set_word(key->dmq1, Q-1)) in test_check_crt_components()
320 && TEST_true(BN_set_word(key->dmq1, DQ)) in test_check_crt_components()
332 && TEST_true(BN_set_word(key->dmq1, DQ-1)) in test_check_crt_components()
334 && TEST_true(BN_set_word(key->dmq1, DQ)) in test_check_crt_components()
/openssl/crypto/rsa/
H A Drsa_sp800_56b_gen.c294 if (rsa->dmq1 == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq()
295 rsa->dmq1 = BN_secure_new(); in ossl_rsa_sp800_56b_derive_params_from_pq()
296 if (rsa->dmq1 == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq()
298 BN_set_flags(rsa->dmq1, BN_FLG_CONSTTIME); in ossl_rsa_sp800_56b_derive_params_from_pq()
299 if (!BN_mod(rsa->dmq1, rsa->d, q1, ctx)) in ossl_rsa_sp800_56b_derive_params_from_pq()
323 BN_free(rsa->dmq1); in ossl_rsa_sp800_56b_derive_params_from_pq()
324 rsa->dmq1 = NULL; in ossl_rsa_sp800_56b_derive_params_from_pq()
H A Drsa_lib.c164 BN_clear_free(r->dmq1); in RSA_free()
444 int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) in RSA_set0_crt_params() argument
450 || (r->dmq1 == NULL && dmq1 == NULL) in RSA_set0_crt_params()
459 if (dmq1 != NULL) { in RSA_set0_crt_params()
460 BN_clear_free(r->dmq1); in RSA_set0_crt_params()
461 r->dmq1 = dmq1; in RSA_set0_crt_params()
462 BN_set_flags(r->dmq1, BN_FLG_CONSTTIME); in RSA_set0_crt_params()
597 const BIGNUM **dmp1, const BIGNUM **dmq1, in RSA_get0_crt_params() argument
602 if (dmq1 != NULL) in RSA_get0_crt_params()
603 *dmq1 = r->dmq1; in RSA_get0_crt_params()
[all …]
H A Drsa_gen.c142 if (!rsa->dmq1 && ((rsa->dmq1 = BN_secure_new()) == NULL)) in rsa_multiprime_keygen()
144 BN_set_flags(rsa->dmq1, BN_FLG_CONSTTIME); in rsa_multiprime_keygen()
366 || !BN_mod(rsa->dmq1, d, r2, ctx)) { in rsa_multiprime_keygen()
458 BN_clear_free(rsa->dmq1); in rsa_keygen()
464 rsa->dmq1 = NULL; in rsa_keygen()
H A Drsa_sp800_56b_check.c30 if (rsa->dmp1 == NULL || rsa->dmq1 == NULL || rsa->iqmp == NULL) { in ossl_rsa_check_crt_components()
31 if (rsa->dmp1 != NULL || rsa->dmq1 != NULL || rsa->iqmp != NULL) in ossl_rsa_check_crt_components()
59 && (BN_cmp(rsa->dmq1, BN_value_one()) > 0) in ossl_rsa_check_crt_components()
60 && (BN_cmp(rsa->dmq1, q1) < 0) in ossl_rsa_check_crt_components()
68 && BN_mod_mul(r, rsa->dmq1, rsa->e, q1, ctx) in ossl_rsa_check_crt_components()
H A Drsa_ossl.c321 (rsa->dmp1 != NULL) && (rsa->dmq1 != NULL) && (rsa->iqmp != NULL))) { in rsa_ossl_private_encrypt()
441 (rsa->dmp1 != NULL) && (rsa->dmq1 != NULL) && (rsa->iqmp != NULL))) { in rsa_ossl_private_decrypt()
702 || !BN_mod_exp_mont_consttime_x2(m1, m1, rsa->dmq1, rsa->q, in rsa_ossl_mod_exp()
741 BIGNUM *dmq1 = BN_new(); in rsa_ossl_mod_exp() local
742 if (dmq1 == NULL) { in rsa_ossl_mod_exp()
746 BN_with_flags(dmq1, rsa->dmq1, BN_FLG_CONSTTIME); in rsa_ossl_mod_exp()
749 if (!rsa->meth->bn_mod_exp(m1, r1, dmq1, rsa->q, ctx, in rsa_ossl_mod_exp()
752 BN_free(dmq1); in rsa_ossl_mod_exp()
756 BN_free(dmq1); in rsa_ossl_mod_exp()
H A Drsa_x931g.c129 rsa->dmq1 = BN_new(); in RSA_X931_derive_ex()
130 if (rsa->dmq1 == NULL) in RSA_X931_derive_ex()
132 if (!BN_mod(rsa->dmq1, rsa->d, r2, ctx)) in RSA_X931_derive_ex()
H A Drsa_chk.c156 if (key->dmp1 != NULL && key->dmq1 != NULL && key->iqmp != NULL) { in rsa_validate_keypair_multiprime()
180 if (BN_cmp(j, key->dmq1) != 0) { in rsa_validate_keypair_multiprime()
H A Drsa_asn1.c65 ASN1_SIMPLE(RSA, dmq1, CBIGNUM),
H A Drsa_local.h68 BIGNUM *dmq1; member
H A Drsa_backend.c382 if (!rsa_bn_dup_check(&dupkey->dmq1, rsa->dmq1)) in ossl_rsa_dup()
H A Drsa_ameth.c341 if (!ASN1_bn_print(bp, "exponent2:", x->dmq1, NULL, off)) in pkey_rsa_print()
/openssl/crypto/pem/
H A Dpvkfmt.c448 BIGNUM *p = NULL, *q = NULL, *dmp1 = NULL, *dmq1 = NULL, *iqmp = NULL; in ossl_b2i_RSA_after_header() local
470 if (!read_lebn(&pin, hnbyte, &dmq1)) in ossl_b2i_RSA_after_header()
479 if (!RSA_set0_crt_params(rsa, dmp1, dmq1, iqmp)) in ossl_b2i_RSA_after_header()
481 dmp1 = dmq1 = iqmp = NULL; in ossl_b2i_RSA_after_header()
496 BN_free(dmq1); in ossl_b2i_RSA_after_header()
641 const BIGNUM *d, *p, *q, *iqmp, *dmp1, *dmq1; in check_bitlen_rsa() local
652 RSA_get0_crt_params(rsa, &dmp1, &dmq1, &iqmp); in check_bitlen_rsa()
657 || (BN_num_bytes(dmq1) > hnbyte)) in check_bitlen_rsa()
669 const BIGNUM *n, *d, *e, *p, *q, *iqmp, *dmp1, *dmq1; in write_rsa() local
679 RSA_get0_crt_params(rsa, &dmp1, &dmq1, &iqmp); in write_rsa()
[all …]
/openssl/doc/man3/
H A DRSA_get0_key.pod25 int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp);
30 const BIGNUM **dmp1, const BIGNUM **dmq1,
60 B<n>, B<e>, B<d>, B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp>. B<n> is
63 B<dmq1> and B<iqmp> are the factors for the second representation of a
65 the first and second factor of B<n> and B<dmp1>, B<dmq1> and B<iqmp>
92 B<dmq1> and B<iqmp> parameters can be obtained and set with
105 Any of the values B<n>, B<e>, B<d>, B<p>, B<q>, B<dmp1>, B<dmq1>, and B<iqmp> can also be
H A DRSA_check_key.pod32 and that B<dmp1>, B<dmq1> and B<iqmp> are set correctly or are B<NULL>.
H A DRSA_set_method.pod124 * operations, even if p,q,dmp1,dmq1,iqmp
/openssl/include/openssl/
H A Drsa.h213 BIGNUM *dmp1, BIGNUM *dmq1,
230 const BIGNUM **dmq1,
/openssl/crypto/err/
H A Dopenssl.txt1167 RSA_R_DMQ1_NOT_CONGRUENT_TO_D:125:dmq1 not congruent to d
/openssl/
H A DCHANGES.md17495 method only got called if p,q,dmp1,dmq1,iqmp components were present,

Completed in 281 milliseconds