Home
last modified time | relevance | path

Searched refs:rsa_pub (Results 1 – 3 of 3) sorted by relevance

/external/ipsec-tools/src/racoon/
Dcrypto_openssl.c2723 RSA *rsa_pub = NULL; in binbuf_pubkey2rsa() local
2733 rsa_pub = RSA_new(); in binbuf_pubkey2rsa()
2735 if (!exp || !mod || !rsa_pub) { in binbuf_pubkey2rsa()
2741 if (rsa_pub) in binbuf_pubkey2rsa()
2742 RSA_free(rsa_pub); in binbuf_pubkey2rsa()
2743 rsa_pub = NULL; in binbuf_pubkey2rsa()
2747 rsa_pub->n = mod; in binbuf_pubkey2rsa()
2748 rsa_pub->e = exp; in binbuf_pubkey2rsa()
2751 return rsa_pub; in binbuf_pubkey2rsa()
2758 RSA *rsa_pub = NULL; in base64_pubkey2rsa() local
[all …]
/external/curl/lib/
Dssh.h111 char *rsa_pub; /* path name */ member
Dssh.c805 sshc->rsa_pub = sshc->rsa = NULL; in ssh_statemach_act()
852 sshc->rsa_pub = strdup(data->set.str[STRING_SSH_PUBLIC_KEY]); in ssh_statemach_act()
853 if(!sshc->rsa_pub) in ssh_statemach_act()
860 Curl_safefree(sshc->rsa_pub); in ssh_statemach_act()
872 infof(data, "Using SSH public key file '%s'\n", sshc->rsa_pub); in ssh_statemach_act()
889 sshc->rsa_pub, in ssh_statemach_act()
895 Curl_safefree(sshc->rsa_pub); in ssh_statemach_act()
2569 Curl_safefree(sshc->rsa_pub); in ssh_statemach_act()