HomeSort by relevance Sort by last modified time
    Searched defs:dmp1 (Results 1 - 8 of 8) sorted by null

  /external/openssl/crypto/rsa/
rsa_test.c 27 key->dmp1 = BN_bin2bn(dmp1, sizeof(dmp1)-1, key->dmp1); \
60 static unsigned char dmp1[] = local
106 static unsigned char dmp1[] = local
167 static unsigned char dmp1[] = local
rsa_eay.c 415 (rsa->dmp1 != NULL) &&
539 (rsa->dmp1 != NULL) &&
719 BIGNUM *dmp1,*dmq1,*c,*pr1; local
798 /* compute r1^dmp1 mod p */
801 dmp1 = &local_dmp1;
802 BN_with_flags(dmp1, rsa->dmp1, BN_FLG_CONSTTIME);
805 dmp1 = rsa->dmp1;
806 if (!rsa->meth->bn_mod_exp(r0,r1,dmp1,rsa->p,ctx
    [all...]
rsa.h 143 BIGNUM *dmp1; member in struct:rsa_st
  /external/wpa_supplicant/
rsa.c 32 struct bignum *dmp1; /* d mod (p - 1); CRT exponent */ member in struct:crypto_rsa_key
151 key->dmp1 = bignum_init();
156 key->p == NULL || key->q == NULL || key->dmp1 == NULL ||
206 pos = crypto_rsa_parse_integer(pos, end, key->dmp1);
276 * dmp1 = (1/e) mod (p-1)
279 * m1 = c^dmp1 mod p
289 /* a = tmp^dmp1 mod p */
290 if (bignum_exptmod(tmp, key->dmp1, key->p, a) < 0)
354 bignum_deinit(key->dmp1);
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
rsa.c 32 struct bignum *dmp1; /* d mod (p - 1); CRT exponent */ member in struct:crypto_rsa_key
152 key->dmp1 = bignum_init();
157 key->p == NULL || key->q == NULL || key->dmp1 == NULL ||
207 pos = crypto_rsa_parse_integer(pos, end, key->dmp1);
278 * dmp1 = (1/e) mod (p-1)
281 * m1 = c^dmp1 mod p
291 /* a = tmp^dmp1 mod p */
292 if (bignum_exptmod(tmp, key->dmp1, key->p, a) < 0)
356 bignum_deinit(key->dmp1);
  /external/wpa_supplicant_8/src/tls/
rsa.c 31 struct bignum *dmp1; /* d mod (p - 1); CRT exponent */ member in struct:crypto_rsa_key
150 key->dmp1 = bignum_init();
155 key->p == NULL || key->q == NULL || key->dmp1 == NULL ||
205 pos = crypto_rsa_parse_integer(pos, end, key->dmp1);
275 * dmp1 = (1/e) mod (p-1)
278 * m1 = c^dmp1 mod p
288 /* a = tmp^dmp1 mod p */
289 if (bignum_exptmod(tmp, key->dmp1, key->p, a) < 0)
353 bignum_deinit(key->dmp1);
  /external/dropbear/
keyimport.c 578 * dmp1, dmq1, iqmp in that order. (The last three are d mod
633 * OpenSSH key order is n, e, d, p, q, dmp1, dmq1, iqmp
710 mp_int dmp1, dmq1, iqmp, tmpval; /* for rsa */ local
775 m_mp_init(&dmp1);
779 /* dmp1 = d mod (p-1) */
784 if (mp_mod(key->rsakey->d, &tmpval, &dmp1) != MP_OKAY) {
785 fprintf(stderr, "Bignum error for dmp1\n");
806 buf_putmpint(extrablob, &dmp1);
810 mp_clear(&dmp1);
815 /* dmp1 */
    [all...]
  /external/openssl/include/openssl/
rsa.h 143 BIGNUM *dmp1; member in struct:rsa_st

Completed in 385 milliseconds