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 205 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 | 293 const char *passphrase, struct sshkey **keyp, char **commentp); 295 const char *passphrase, struct sshkey **keyp, char **commentp);
|
| H A D | sshkey.c | 3164 struct sshkey **keyp, char **commentp) in sshkey_parse_private2() argument 3173 if (commentp != NULL) in sshkey_parse_private2() 3174 *commentp = NULL; in sshkey_parse_private2() 3209 if (commentp != NULL) { in sshkey_parse_private2() 3210 *commentp = comment; in sshkey_parse_private2() 3640 const char *passphrase, struct sshkey **keyp, char **commentp) in sshkey_parse_private_fileblob_type() argument 3646 if (commentp != NULL) in sshkey_parse_private_fileblob_type() 3647 *commentp = NULL; in sshkey_parse_private_fileblob_type() 3649 r = sshkey_parse_private2(blob, type, passphrase, keyp, commentp); in sshkey_parse_private_fileblob_type() 3663 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 | 293 load_identity(const char *filename, char **commentp) in load_identity() argument 299 if (commentp != NULL) in load_identity() 300 *commentp = NULL; in load_identity() 301 if ((r = sshkey_load_private(filename, "", &prv, commentp)) == 0) in load_identity() 312 r = sshkey_load_private(filename, pass, &prv, commentp); in load_identity()
|