Searched refs:check_mod_inverse (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/crypto/fipsmodule/rsa/ |
D | rsa.c | 641 static int check_mod_inverse(int *out_ok, const BIGNUM *a, const BIGNUM *ainv, in check_mod_inverse() function 706 !check_mod_inverse(&d_ok, key->e, key->d, &lcm, in RSA_check_key() 736 if (!check_mod_inverse(&dmp1_ok, key->e, key->dmp1, &pm1, in RSA_check_key() 738 !check_mod_inverse(&dmq1_ok, key->e, key->dmq1, &qm1, in RSA_check_key() 740 !check_mod_inverse(&iqmp_ok, key->q, key->iqmp, key->p, in RSA_check_key()
|