Searched refs:commentp (Results 1 – 6 of 6) sorted by relevance
| /freebsd/crypto/openssh/ |
| H A D | authfile.c | 111 struct sshkey **keyp, char **commentp) in sshkey_load_private_type() argument 117 if (commentp != NULL) in sshkey_load_private_type() 118 *commentp = NULL; in sshkey_load_private_type() 127 r = sshkey_load_private_type_fd(fd, type, passphrase, keyp, commentp); in sshkey_load_private_type() 135 struct sshkey **keyp, char **commentp) in sshkey_load_private() argument 138 keyp, commentp); in sshkey_load_private() 143 struct sshkey **keyp, char **commentp) in sshkey_load_private_type_fd() argument 152 passphrase, keyp, commentp)) != 0) in sshkey_load_private_type_fd() 194 char **commentp) in sshkey_try_load_public() argument 206 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 | 298 const char *passphrase, struct sshkey **keyp, char **commentp); 300 const char *passphrase, struct sshkey **keyp, char **commentp);
|
| H A D | sshkey.c | 3180 struct sshkey **keyp, char **commentp) in sshkey_parse_private2() argument 3189 if (commentp != NULL) in sshkey_parse_private2() 3190 *commentp = NULL; in sshkey_parse_private2() 3225 if (commentp != NULL) { in sshkey_parse_private2() 3226 *commentp = comment; in sshkey_parse_private2() 3660 const char *passphrase, struct sshkey **keyp, char **commentp) in sshkey_parse_private_fileblob_type() argument 3666 if (commentp != NULL) in sshkey_parse_private_fileblob_type() 3667 *commentp = NULL; in sshkey_parse_private_fileblob_type() 3669 r = sshkey_parse_private2(blob, type, passphrase, keyp, commentp); in sshkey_parse_private_fileblob_type() 3683 struct sshkey **keyp, char **commentp) in sshkey_parse_private_fileblob() argument [all …]
|
| H A D | authfd.c | 235 deserialise_identity2(struct sshbuf *ids, struct sshkey **keyp, char **commentp) in deserialise_identity2() argument 247 if (commentp != NULL) { in deserialise_identity2() 248 *commentp = comment; in deserialise_identity2()
|
| H A D | ssh-keygen.c | 297 load_identity(const char *filename, char **commentp) in load_identity() argument 303 if (commentp != NULL) in load_identity() 304 *commentp = NULL; in load_identity() 305 if ((r = sshkey_load_private(filename, "", &prv, commentp)) == 0) in load_identity() 316 r = sshkey_load_private(filename, pass, &prv, commentp); in load_identity()
|