Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dauthfile.c174 sshkey_load_pubkey_from_private(const char *filename, struct sshkey **pubkeyp) in sshkey_load_pubkey_from_private() argument
180 if (pubkeyp != NULL) in sshkey_load_pubkey_from_private()
181 *pubkeyp = NULL; in sshkey_load_pubkey_from_private()
192 if (pubkeyp != NULL) { in sshkey_load_pubkey_from_private()
193 *pubkeyp = pubkey; in sshkey_load_pubkey_from_private()
H A Dsshkey.c3058 struct sshbuf **decryptedp, struct sshkey **pubkeyp) in private2_decrypt() argument
3070 if (decoded == NULL || decryptedp == NULL || pubkeyp == NULL) in private2_decrypt()
3074 *pubkeyp = NULL; in private2_decrypt()
3182 *pubkeyp = pubkey; in private2_decrypt()
3747 struct sshkey **pubkeyp) in sshkey_parse_pubkey_from_private_fileblob_type() argument
3751 if (pubkeyp != NULL) in sshkey_parse_pubkey_from_private_fileblob_type()
3752 *pubkeyp = NULL; in sshkey_parse_pubkey_from_private_fileblob_type()
3754 if ((r = sshkey_parse_private2_pubkey(blob, type, pubkeyp)) != 0) in sshkey_parse_pubkey_from_private_fileblob_type()
H A Dsshkey.h318 int type, struct sshkey **pubkeyp);