/external/ipsec-tools/src/racoon/ |
prsa_par.y | 190 || !rsa_cur->dmq1 || !rsa_cur->iqmp) { 195 if (rsa_cur->iqmp) BN_clear_free(rsa_cur->iqmp); 201 rsa_cur->iqmp = NULL; 305 { if (!rsa_cur->iqmp) rsa_cur->iqmp = $3; else { prsaerror ("Coefficient already defined\n"); YYABORT; } }
|
plainrsa-gen.c | 147 fprintf(fp, "\tCoefficient: 0x%s\n", lowercase(BN_bn2hex(key->iqmp)));
|
/external/wpa_supplicant_8/src/tls/ |
rsa.c | 27 struct bignum *iqmp; /* 1 / q mod p; CRT coefficient */ member in struct:crypto_rsa_key 169 key->iqmp = bignum_init(); 173 key->dmq1 == NULL || key->iqmp == NULL) { 224 pos = crypto_rsa_parse_integer(pos, end, key->iqmp); 294 * iqmp = (1/q) mod p, where p > q 315 bignum_mulmod(tmp, key->iqmp, key->p, tmp) < 0) 372 bignum_deinit(key->iqmp);
|
/external/boringssl/src/crypto/rsa/ |
rsa.c | 150 BN_clear_free(rsa->iqmp); 534 BIGNUM n, pm1, qm1, lcm, gcd, de, dmp1, dmq1, iqmp; local 573 BN_init(&iqmp); 623 has_crt_values != (key->iqmp != NULL)) { 633 /* iqmp = q^-1 mod p */ 634 !BN_mod_inverse(&iqmp, key->q, key->p, ctx)) { 641 BN_cmp(&iqmp, key->iqmp) != 0) { 658 BN_free(&iqmp); 674 if (rsa->p || rsa->q || rsa->dmp1 || rsa->dmq1 || rsa->iqmp) { [all...] |
rsa_impl.c | 569 (rsa->dmq1 != NULL) && (rsa->iqmp != NULL))) { 703 if (!BN_mul(r1, r0, rsa->iqmp, ctx)) { 887 if (!rsa->iqmp && ((rsa->iqmp = BN_new()) == NULL)) { 1067 if (!BN_mod_inverse(rsa->iqmp, rsa->q, p, ctx)) {
|
rsa_asn1.c | 231 !parse_integer(&child, &ret->iqmp)) { 320 !marshal_integer(&child, rsa->iqmp)) {
|
/external/boringssl/src/crypto/evp/ |
p_rsa_asn1.c | 203 update_buflen(rsa->iqmp, &buf_len); 257 !ASN1_bn_print(out, "coefficient:", rsa->iqmp, m, off)) {
|
/external/boringssl/src/include/openssl/ |
rsa.h | 291 * values are set in the |p|, |q|, |dmp1|, |dmq1| and |iqmp| members of |rsa|, 557 BIGNUM *iqmp; member in struct:rsa_st
|
/external/conscrypt/src/main/java/org/conscrypt/ |
NativeCrypto.java | 86 byte[] dmp1, byte[] dmq1, byte[] iqmp); 139 * @return array of {n, e, d, p, q, dmp1, dmq1, iqmp} [all...] |
/external/conscrypt/src/main/native/ |
org_conscrypt_NativeCrypto.cpp | 3324 jbyteArray iqmp = bignumToArray(env, rsa->iqmp, "iqmp"); local [all...] |
/external/curl/lib/vtls/ |
openssl.c | [all...] |