Home
last modified time | relevance | path

Searched refs:rsa_e (Results 1 – 2 of 2) sorted by relevance

/dragonfly/crypto/openssh/
H A Dsshkey.c899 RSA_get0_key(key->rsa, &rsa_n, &rsa_e, NULL); in to_blob_buf()
1869 const BIGNUM *rsa_n, *rsa_e; in sshkey_from_private() local
1931 RSA_get0_key(k->rsa, &rsa_n, &rsa_e, NULL); in sshkey_from_private()
1933 (rsa_e_dup = BN_dup(rsa_e)) == NULL) { in sshkey_from_private()
2398 BIGNUM *rsa_n = NULL, *rsa_e = NULL; in sshkey_from_blob_internal() local
2438 if (sshbuf_get_bignum2(b, &rsa_e) != 0 || in sshkey_from_blob_internal()
2447 rsa_n = rsa_e = NULL; /* transferred */ in sshkey_from_blob_internal()
2644 BN_clear_free(rsa_e); in sshkey_from_blob_internal()
3023 RSA_get0_key(k->rsa, &rsa_n, &rsa_e, NULL); in sshkey_certify_custom()
3633 rsa_n = rsa_e = NULL; /* transferred */ in sshkey_private_deserialize()
[all …]
H A Dssh-keygen.c486 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL; in do_convert_private_ssh2() local
560 if ((rsa_e = BN_new()) == NULL) in do_convert_private_ssh2()
562 if (!BN_set_word(rsa_e, e)) { in do_convert_private_ssh2()
563 BN_clear_free(rsa_e); in do_convert_private_ssh2()
578 if (!RSA_set0_key(key->rsa, rsa_n, rsa_e, rsa_d)) in do_convert_private_ssh2()
580 rsa_n = rsa_e = rsa_d = NULL; /* transferred */ in do_convert_private_ssh2()