Lines Matching defs:rsa_d
89 const BIGNUM *rsa_n, *rsa_e, *rsa_d, *rsa_iqmp, *rsa_p, *rsa_q;
94 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
104 if ((r = sshbuf_put_bignum2(b, rsa_d)) != 0 ||
231 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL;
257 if ((r = sshbuf_get_bignum2(b, &rsa_d)) != 0 ||
262 if ((r = ssh_rsa_complete_crt_parameters(rsa_d, rsa_p, rsa_q,
265 if (!RSA_set0_key(rsa, NULL, NULL, rsa_d)) {
269 rsa_d = NULL; /* transferred */
296 BN_clear_free(rsa_d);
357 ssh_rsa_complete_crt_parameters(const BIGNUM *rsa_d, const BIGNUM *rsa_p,
372 if ((d_consttime = BN_dup(rsa_d)) == NULL) {