/openssl/crypto/rsa/ |
H A D | rsa_sp800_56b_gen.c | 303 if (rsa->dmq1 == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq() 304 rsa->dmq1 = BN_secure_new(); in ossl_rsa_sp800_56b_derive_params_from_pq() 305 if (rsa->dmq1 == NULL) in ossl_rsa_sp800_56b_derive_params_from_pq() 307 BN_set_flags(rsa->dmq1, BN_FLG_CONSTTIME); 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() 332 BN_free(rsa->dmq1); in ossl_rsa_sp800_56b_derive_params_from_pq() 333 rsa->dmq1 = NULL; in ossl_rsa_sp800_56b_derive_params_from_pq()
|
H A D | rsa_lib.c | 173 BN_clear_free(r->dmq1); in RSA_free() 453 int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) in RSA_set0_crt_params() argument 459 || (r->dmq1 == NULL && dmq1 == NULL) in RSA_set0_crt_params() 468 if (dmq1 != NULL) { in RSA_set0_crt_params() 469 BN_clear_free(r->dmq1); in RSA_set0_crt_params() 470 r->dmq1 = dmq1; in RSA_set0_crt_params() 471 BN_set_flags(r->dmq1, BN_FLG_CONSTTIME); in RSA_set0_crt_params() 606 const BIGNUM **dmp1, const BIGNUM **dmq1, in RSA_get0_crt_params() argument 611 if (dmq1 != NULL) in RSA_get0_crt_params() 612 *dmq1 = r->dmq1; in RSA_get0_crt_params() [all …]
|
H A D | rsa_gen.c | 92 BIGNUM *dmp1 = NULL, *dmq1 = NULL, *iqmp = NULL; in DEFINE_STACK_OF() local 191 dmq1 = BN_secure_new(); in DEFINE_STACK_OF() 192 if (dmq1 == NULL) in DEFINE_STACK_OF() 201 if (!BN_mod(dmq1, rsa->d, r2, ctx)) in DEFINE_STACK_OF() 203 if (!sk_BIGNUM_insert(exps, dmq1, sk_BIGNUM_num(exps))) in DEFINE_STACK_OF() 205 dmq1 = NULL; in DEFINE_STACK_OF() 253 BN_clear_free(dmq1); in DEFINE_STACK_OF() 571 rsa->dmq1 = sk_BIGNUM_delete(exps, 0); in rsa_multiprime_keygen() 638 BN_clear_free(rsa->dmq1); in rsa_keygen() 644 rsa->dmq1 = NULL; in rsa_keygen()
|
H A D | rsa_sp800_56b_check.c | 30 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 D | rsa_x931g.c | 129 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 D | rsa_ossl.c | 382 (rsa->dmp1 != NULL) && (rsa->dmq1 != NULL) && (rsa->iqmp != NULL))) { in rsa_ossl_private_encrypt() 630 (rsa->dmp1 != NULL) && (rsa->dmq1 != NULL) && (rsa->iqmp != NULL))) { in rsa_ossl_private_decrypt() 899 || !BN_mod_exp_mont_consttime_x2(m1, m1, rsa->dmq1, rsa->q, in rsa_ossl_mod_exp() 938 BIGNUM *dmq1 = BN_new(); in rsa_ossl_mod_exp() local 939 if (dmq1 == NULL) { in rsa_ossl_mod_exp() 943 BN_with_flags(dmq1, rsa->dmq1, BN_FLG_CONSTTIME); in rsa_ossl_mod_exp() 946 if (!rsa->meth->bn_mod_exp(m1, r1, dmq1, rsa->q, ctx, in rsa_ossl_mod_exp() 949 BN_free(dmq1); in rsa_ossl_mod_exp() 953 BN_free(dmq1); in rsa_ossl_mod_exp() 1205 if (s390x_crt(r0, i, rsa->p, rsa->q, rsa->dmp1, rsa->dmq1, rsa->iqmp) == 1) in rsa_ossl_s390x_mod_exp()
|
H A D | rsa_chk.c | 160 if (key->dmp1 != NULL && key->dmq1 != NULL && key->iqmp != NULL) { in rsa_validate_keypair_multiprime() 184 if (BN_cmp(j, key->dmq1) != 0) { in rsa_validate_keypair_multiprime()
|
H A D | rsa_asn1.c | 65 ASN1_SIMPLE(RSA, dmq1, CBIGNUM),
|
H A D | rsa_local.h | 68 BIGNUM *dmq1; member
|
H A D | rsa_backend.c | 506 if (!rsa_bn_dup_check(&dupkey->dmq1, rsa->dmq1)) in ossl_rsa_dup()
|
H A D | rsa_ameth.c | 344 if (!ASN1_bn_print(bp, "exponent2:", x->dmq1, NULL, off)) in pkey_rsa_print()
|
/openssl/test/ |
H A D | rsa_mp_test.c | 99 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 D | rsa_test.c | 42 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 D | rsa_sp800_56b_test.c | 307 && TEST_BN_eq_word(key->dmq1, DQ) in test_check_crt_components() 317 && TEST_true(BN_set_word(key->dmq1, 1)) in test_check_crt_components() 319 && TEST_true(BN_set_word(key->dmq1, Q-1)) in test_check_crt_components() 321 && TEST_true(BN_set_word(key->dmq1, DQ)) in test_check_crt_components() 333 && TEST_true(BN_set_word(key->dmq1, DQ-1)) in test_check_crt_components() 335 && TEST_true(BN_set_word(key->dmq1, DQ)) in test_check_crt_components()
|
H A D | evp_pkey_provided_test.c | 546 BIGNUM *dmp1 = NULL, *dmq1 = NULL, *iqmp = NULL; in test_fromdata_rsa_derive_from_pq_sp800() local 600 || !TEST_ptr(dmq1 = BN_bin2bn(dmq1_data, sizeof(dmq1_data), NULL)) in test_fromdata_rsa_derive_from_pq_sp800() 617 cdata[1].comparebn = dmq1; in test_fromdata_rsa_derive_from_pq_sp800() 632 BN_free(dmq1); in test_fromdata_rsa_derive_from_pq_sp800() 643 BIGNUM *dmp1 = NULL, *dmq1 = NULL, *iqmp = NULL; in test_fromdata_rsa_derive_from_pq_multiprime() local 785 || !TEST_ptr(dmq1 = BN_bin2bn(dmq1_data, sizeof(dmq1_data), NULL)) in test_fromdata_rsa_derive_from_pq_multiprime() 804 cdata[1].comparebn = dmq1; in test_fromdata_rsa_derive_from_pq_multiprime() 836 BN_free(dmq1); in test_fromdata_rsa_derive_from_pq_multiprime()
|
/openssl/crypto/pem/ |
H A D | pvkfmt.c | 453 BIGNUM *p = NULL, *q = NULL, *dmp1 = NULL, *dmq1 = NULL, *iqmp = NULL; in ossl_b2i_RSA_after_header() local 475 if (!read_lebn(&pin, hnbyte, &dmq1)) in ossl_b2i_RSA_after_header() 484 if (!RSA_set0_crt_params(rsa, dmp1, dmq1, iqmp)) in ossl_b2i_RSA_after_header() 486 dmp1 = dmq1 = iqmp = NULL; in ossl_b2i_RSA_after_header() 507 BN_free(dmq1); in ossl_b2i_RSA_after_header() 651 const BIGNUM *d, *p, *q, *iqmp, *dmp1, *dmq1; in check_bitlen_rsa() local 662 RSA_get0_crt_params(rsa, &dmp1, &dmq1, &iqmp); in check_bitlen_rsa() 667 || (BN_num_bytes(dmq1) > hnbyte)) in check_bitlen_rsa() 679 const BIGNUM *n, *d, *e, *p, *q, *iqmp, *dmp1, *dmq1; in write_rsa() local 689 RSA_get0_crt_params(rsa, &dmp1, &dmq1, &iqmp); in write_rsa() [all …]
|
/openssl/doc/man3/ |
H A D | RSA_get0_key.pod | 25 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 D | OSSL_PARAM_BLD.pod | 155 BIGNUM *dmp1, *dmq1; /* first two CRT exponents */ 173 || !OSSL_PARAM_BLD_push_BN(bld, "rsa-exponent2", dmq1)
|
H A D | RSA_check_key.pod | 32 and that B<dmp1>, B<dmq1> and B<iqmp> are set correctly or are B<NULL>.
|
H A D | RSA_set_method.pod | 124 * operations, even if p,q,dmp1,dmq1,iqmp
|
/openssl/include/openssl/ |
H A D | rsa.h | 221 BIGNUM *dmp1, BIGNUM *dmq1, 238 const BIGNUM **dmq1,
|
/openssl/crypto/err/ |
H A D | openssl.txt | 1238 RSA_R_DMQ1_NOT_CONGRUENT_TO_D:125:dmq1 not congruent to d
|
/openssl/ |
H A D | CHANGES.md | 19043 method only got called if p,q,dmp1,dmq1,iqmp components were present,
|