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

  /external/openssl/crypto/rsa/
rsa_test.c 29 key->iqmp = BN_bin2bn(iqmp, sizeof(iqmp)-1, key->iqmp); \
69 static unsigned char iqmp[] = local
114 static unsigned char iqmp[] = local
179 static unsigned char iqmp[] = local
rsa.h 145 BIGNUM *iqmp; member in struct:rsa_st
  /external/wpa_supplicant/
rsa.c 34 struct bignum *iqmp; /* 1 / q mod p; CRT coefficient */ member in struct:crypto_rsa_key
153 key->iqmp = bignum_init();
157 key->dmq1 == NULL || key->iqmp == NULL) {
208 pos = crypto_rsa_parse_integer(pos, end, key->iqmp);
278 * iqmp = (1/q) mod p, where p > q
299 bignum_mulmod(tmp, key->iqmp, key->p, tmp) < 0)
356 bignum_deinit(key->iqmp);
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
rsa.c 34 struct bignum *iqmp; /* 1 / q mod p; CRT coefficient */ member in struct:crypto_rsa_key
154 key->iqmp = bignum_init();
158 key->dmq1 == NULL || key->iqmp == NULL) {
209 pos = crypto_rsa_parse_integer(pos, end, key->iqmp);
280 * iqmp = (1/q) mod p, where p > q
301 bignum_mulmod(tmp, key->iqmp, key->p, tmp) < 0)
358 bignum_deinit(key->iqmp);
  /external/wpa_supplicant_8/src/tls/
rsa.c 33 struct bignum *iqmp; /* 1 / q mod p; CRT coefficient */ member in struct:crypto_rsa_key
152 key->iqmp = bignum_init();
156 key->dmq1 == NULL || key->iqmp == NULL) {
207 pos = crypto_rsa_parse_integer(pos, end, key->iqmp);
277 * iqmp = (1/q) mod p, where p > q
298 bignum_mulmod(tmp, key->iqmp, key->p, tmp) < 0)
355 bignum_deinit(key->iqmp);
  /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
777 m_mp_init(&iqmp);
799 /* iqmp = (q^-1) mod p */
800 if (mp_invmod(key->rsakey->q, key->rsakey->p, &iqmp) != MP_OKAY) {
801 fprintf(stderr, "Bignum error for iqmp\n");
808 buf_putmpint(extrablob, &iqmp);
812 mp_clear(&iqmp);
825 /* iqmp */
    [all...]
  /external/openssl/include/openssl/
rsa.h 145 BIGNUM *iqmp; member in struct:rsa_st

Completed in 203 milliseconds