Searched refs:commentp (Results 1 – 6 of 6) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | authfile.c | 119 struct sshkey **keyp, char **commentp) in sshkey_load_private_type() argument 125 if (commentp != NULL) in sshkey_load_private_type() 126 *commentp = NULL; in sshkey_load_private_type() 135 r = sshkey_load_private_type_fd(fd, type, passphrase, keyp, commentp); in sshkey_load_private_type() 145 struct sshkey **keyp, char **commentp) in sshkey_load_private() argument 148 keyp, commentp); in sshkey_load_private() 153 struct sshkey **keyp, char **commentp) in sshkey_load_private_type_fd() argument 162 passphrase, keyp, commentp)) != 0) in sshkey_load_private_type_fd() 206 char **commentp) in sshkey_try_load_public() argument 217 if (commentp != NULL) in sshkey_try_load_public() [all …]
|
H A D | authfile.h | 46 struct sshkey **keyp, char **commentp);
|
H A D | sshkey.h | 314 const char *passphrase, struct sshkey **keyp, char **commentp); 316 const char *passphrase, struct sshkey **keyp, char **commentp);
|
H A D | sshkey.c | 3205 struct sshkey **keyp, char **commentp) in sshkey_parse_private2() argument 3214 if (commentp != NULL) in sshkey_parse_private2() 3215 *commentp = NULL; in sshkey_parse_private2() 3250 if (commentp != NULL) { in sshkey_parse_private2() 3251 *commentp = comment; in sshkey_parse_private2() 3697 const char *passphrase, struct sshkey **keyp, char **commentp) in sshkey_parse_private_fileblob_type() argument 3703 if (commentp != NULL) in sshkey_parse_private_fileblob_type() 3704 *commentp = NULL; in sshkey_parse_private_fileblob_type() 3710 keyp, commentp); in sshkey_parse_private_fileblob_type() 3713 commentp); in sshkey_parse_private_fileblob_type() [all …]
|
H A D | authfd.c | 236 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 D | ssh-keygen.c | 314 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()
|