Home
last modified time | relevance | path

Searched refs:commentp (Results 1 – 6 of 6) sorted by relevance

/freebsd/crypto/openssh/
H A Dauthfile.c117 struct sshkey **keyp, char **commentp) in sshkey_load_private_type() argument
123 if (commentp != NULL) in sshkey_load_private_type()
124 *commentp = NULL; in sshkey_load_private_type()
133 r = sshkey_load_private_type_fd(fd, type, passphrase, keyp, commentp); in sshkey_load_private_type()
143 struct sshkey **keyp, char **commentp) in sshkey_load_private() argument
146 keyp, commentp); in sshkey_load_private()
151 struct sshkey **keyp, char **commentp) in sshkey_load_private_type_fd() argument
160 passphrase, keyp, commentp)) != 0) in sshkey_load_private_type_fd()
204 char **commentp) in sshkey_try_load_public() argument
215 if (commentp != NULL) in sshkey_try_load_public()
[all …]
H A Dauthfile.h46 struct sshkey **keyp, char **commentp);
H A Dsshkey.h316 const char *passphrase, struct sshkey **keyp, char **commentp);
318 const char *passphrase, struct sshkey **keyp, char **commentp);
H A Dsshkey.c3189 struct sshkey **keyp, char **commentp) in sshkey_parse_private2() argument
3198 if (commentp != NULL) in sshkey_parse_private2()
3199 *commentp = NULL; in sshkey_parse_private2()
3234 if (commentp != NULL) { in sshkey_parse_private2()
3235 *commentp = comment; in sshkey_parse_private2()
3681 const char *passphrase, struct sshkey **keyp, char **commentp) in sshkey_parse_private_fileblob_type() argument
3687 if (commentp != NULL) in sshkey_parse_private_fileblob_type()
3688 *commentp = NULL; in sshkey_parse_private_fileblob_type()
3694 keyp, commentp); in sshkey_parse_private_fileblob_type()
3697 commentp); in sshkey_parse_private_fileblob_type()
[all …]
H A Dauthfd.c236 deserialise_identity2(struct sshbuf *ids, struct sshkey **keyp, char **commentp) in deserialise_identity2() argument
248 if (commentp != NULL) { in deserialise_identity2()
249 *commentp = comment; in deserialise_identity2()
H A Dssh-keygen.c314 load_identity(const char *filename, char **commentp) in load_identity() argument
320 if (commentp != NULL) in load_identity()
321 *commentp = NULL; in load_identity()
322 if ((r = sshkey_load_private(filename, "", &prv, commentp)) == 0) in load_identity()
333 r = sshkey_load_private(filename, pass, &prv, commentp); in load_identity()