| /mirbsd/src/lib/libssl/src/crypto/rsa/ |
| D | rsa_test.c | 27 key->dmq1 = BN_bin2bn(dmq1, sizeof(dmq1)-1, key->dmq1); \ 63 static unsigned char dmq1[] = in key1() local 109 static unsigned char dmq1[] = in key2() local 172 static unsigned char dmq1[] = in key3() local
|
| D | rsa_eay.c | 435 (rsa->dmq1 != NULL) && in RSA_eay_private_encrypt() 573 (rsa->dmq1 != NULL) && in RSA_eay_private_decrypt() 747 BIGNUM *dmp1, *dmq1; in RSA_eay_mod_exp() local 769 dmq1 = &local_dmq1; in RSA_eay_mod_exp() 770 BN_with_flags(dmq1, rsa->dmq1, BN_FLG_EXP_CONSTTIME); in RSA_eay_mod_exp() 773 dmq1 = rsa->dmq1; in RSA_eay_mod_exp() 774 if (!rsa->meth->bn_mod_exp(&m1,&r1,dmq1,rsa->q,ctx, in RSA_eay_mod_exp()
|
| D | rsa_gen.c | 179 rsa->dmq1=BN_new(); in RSA_generate_key() 180 if (rsa->dmq1 == NULL) goto err; in RSA_generate_key() 181 if (!BN_mod(rsa->dmq1,rsa->d,r2,ctx)) goto err; in RSA_generate_key()
|
| D | rsa_lib.c | 175 ret->dmq1=NULL; in RSA_new_method() 232 if (r->dmq1 != NULL) BN_clear_free(r->dmq1); in RSA_free() 383 t[4]= &r->dmq1; in RSA_memory_lock()
|
| D | rsa_chk.c | 131 if (key->dmp1 != NULL && key->dmq1 != NULL && key->iqmp != NULL) in RSA_check_key() 154 if (BN_cmp(j, key->dmq1) != 0) in RSA_check_key()
|
| D | rsa_asn1.c | 99 ASN1_SIMPLE(RSA, dmq1, BIGNUM),
|
| D | rsa.h | 139 BIGNUM *dmq1; member
|
| /mirbsd/src/lib/libssl/src/crypto/engine/ |
| D | hw_cswift.c | 99 const BIGNUM *q, const BIGNUM *dmp1, const BIGNUM *dmq1, 586 const BIGNUM *dmq1, const BIGNUM *iqmp, BN_CTX *ctx) in cswift_mod_exp_crt() argument 600 sw_param.up.crt.dmq1.value = NULL; in cswift_mod_exp_crt() 641 if(!cswift_bn_32copy(&sw_param.up.crt.dmq1, dmq1)) in cswift_mod_exp_crt() 702 if(sw_param.up.crt.dmq1.value) in cswift_mod_exp_crt() 703 OPENSSL_free(sw_param.up.crt.dmq1.value); in cswift_mod_exp_crt() 726 BN_num_bytes(rsa->dmq1) > 128 || in cswift_rsa_mod_exp() 744 if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp) in cswift_rsa_mod_exp() 750 rsa->dmq1, rsa->iqmp, ctx); in cswift_rsa_mod_exp()
|
| D | hw_aep.c | 104 const BIGNUM *q, const BIGNUM *dmp1,const BIGNUM *dmq1, 630 const BIGNUM *dmq1,const BIGNUM *iqmp, BN_CTX *ctx) in aep_mod_exp_crt() argument 644 rv = p_AEP_ModExpCrt(hConnection,(void*)a, (void*)p, (void*)q, (void*)dmp1,(void*)dmq1, in aep_mod_exp_crt() 761 if (rsa->q && rsa->dmp1 && rsa->dmq1 && rsa->iqmp) in aep_rsa_mod_exp() 763 rv = aep_mod_exp_crt(r0,I,rsa->p,rsa->q, rsa->dmp1,rsa->dmq1,rsa->iqmp,ctx); in aep_rsa_mod_exp()
|
| D | hw_ncipher.c | 1030 if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp) in hwcrhk_rsa_mod_exp() 1043 BN2MPI(m_dmq1, rsa->dmq1); in hwcrhk_rsa_mod_exp()
|
| D | hw_ubsec.c | 597 if(!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp) in ubsec_rsa_mod_exp() 604 rsa->dmq1, rsa->iqmp, ctx); in ubsec_rsa_mod_exp()
|
| D | hw_cryptodev.c | 1004 if (!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp) { in cryptodev_rsa_mod_exp() 1020 if (bn2crparam(rsa->dmq1, &kop.crk_param[4])) in cryptodev_rsa_mod_exp()
|
| /mirbsd/src/lib/libssl/src/crypto/engine/vendor_defns/ |
| D | hwcryptohook.h | 389 HWCryptoHook_MPI dmq1, 401 HWCryptoHook_MPI dmq1,
|
| D | cswift.h | 184 SW_LARGENUMBER dmq1; /* exponent2 */ member
|
| /mirbsd/src/lib/libssl/src/crypto/asn1/ |
| D | t_pkey.c | 119 if (x->dmq1) in RSA_print() 120 if (buf_len < (i = (size_t)BN_num_bytes(x->dmq1))) in RSA_print() 152 if (!print(bp,"exponent2:",x->dmq1,m,off)) goto err; in RSA_print()
|
| /mirbsd/src/usr.bin/gzsig/ |
| D | ssh.c | 288 BN_mod(rsa->dmq1, rsa->d, aux, ctx); in load_ssh1_private() 333 rsa->dmq1 = BN_new(); in ssh_load_private()
|
| /mirbsd/src/lib/libssl/src/doc/crypto/ |
| D | rsa.pod | 79 BIGNUM *dmq1; // d mod (q-1) 88 B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp> may be B<NULL> in private
|
| D | RSA_check_key.pod | 19 and that B<dmp1>, B<dmq1> and B<iqmp> are set correctly or are B<NULL>.
|
| D | RSA_set_method.pod | 116 * operations, even if p,q,dmp1,dmq1,iqmp
|
| /mirbsd/src/usr.bin/ssh/ |
| D | rsa.c | 140 (BN_mod(rsa->dmq1, rsa->d, aux, ctx) == 0) || in rsa_generate_additional_parameters()
|
| D | scard.c | 495 COPY_RSA_KEY(dmq1, 3); in sc_put_key() 553 memset(elements[3], '\0', BN_num_bytes(prv->rsa->dmq1)); in sc_put_key()
|
| D | key.c | 115 if ((k->rsa->dmq1 = BN_new()) == NULL) in key_new_private()
|