Home
last modified time | relevance | path

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

/freebsd-14.2/crypto/openssh/
H A Dauthfile.c125 if (commentp != NULL) in sshkey_load_private_type()
126 *commentp = NULL; in sshkey_load_private_type()
148 keyp, commentp); in sshkey_load_private()
206 char **commentp) in sshkey_try_load_public() argument
217 if (commentp != NULL) in sshkey_try_load_public()
218 *commentp = NULL; in sshkey_try_load_public()
243 if (commentp) { in sshkey_try_load_public()
244 *commentp = strdup(*cp ? in sshkey_try_load_public()
246 if (*commentp == NULL) in sshkey_try_load_public()
272 if (commentp != NULL) in sshkey_load_public()
[all …]
H A Dauthfile.h46 struct sshkey **keyp, char **commentp);
H A Dsshkey.h305 const char *passphrase, struct sshkey **keyp, char **commentp);
307 const char *passphrase, struct sshkey **keyp, char **commentp);
H A Dsshkey.c3106 if (commentp != NULL) in sshkey_parse_private2()
3107 *commentp = NULL; in sshkey_parse_private2()
3142 if (commentp != NULL) { in sshkey_parse_private2()
3143 *commentp = comment; in sshkey_parse_private2()
3573 if (commentp != NULL) in sshkey_parse_private_fileblob_type()
3574 *commentp = NULL; in sshkey_parse_private_fileblob_type()
3580 keyp, commentp); in sshkey_parse_private_fileblob_type()
3583 commentp); in sshkey_parse_private_fileblob_type()
3602 if (commentp != NULL) in sshkey_parse_private_fileblob()
3603 *commentp = NULL; in sshkey_parse_private_fileblob()
[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.c318 load_identity(const char *filename, char **commentp) in load_identity() argument
324 if (commentp != NULL) in load_identity()
325 *commentp = NULL; in load_identity()
326 if ((r = sshkey_load_private(filename, "", &prv, commentp)) == 0) in load_identity()
334 r = sshkey_load_private(filename, pass, &prv, commentp); in load_identity()