Searched refs:hostkeys (Results 1 – 9 of 9) sorted by relevance
| /NextBSD/crypto/openssh/ |
| HD | hostfile.c | 60 struct hostkeys { struct 232 struct hostkeys * 235 struct hostkeys *ret = xcalloc(1, sizeof(*ret)); in init_hostkeys() 242 load_hostkeys(struct hostkeys *hostkeys, const char *host, const char *path) in load_hostkeys() argument 312 hostkeys->entries = xrealloc(hostkeys->entries, in load_hostkeys() 313 hostkeys->num_entries + 1, sizeof(*hostkeys->entries)); in load_hostkeys() 314 hostkeys->entries[hostkeys->num_entries].host = xstrdup(host); in load_hostkeys() 315 hostkeys->entries[hostkeys->num_entries].file = xstrdup(path); in load_hostkeys() 316 hostkeys->entries[hostkeys->num_entries].line = linenum; in load_hostkeys() 317 hostkeys->entries[hostkeys->num_entries].key = key; in load_hostkeys() [all …]
|
| HD | hostfile.h | 32 struct hostkeys; 34 struct hostkeys *init_hostkeys(void); 35 void load_hostkeys(struct hostkeys *, const char *, const char *); 36 void free_hostkeys(struct hostkeys *); 38 HostStatus check_key_in_hostkeys(struct hostkeys *, Key *, 40 int lookup_key_in_hostkeys_by_type(struct hostkeys *, int,
|
| HD | auth.c | 402 struct hostkeys *hostkeys; in check_key_in_hostfiles() local 405 hostkeys = init_hostkeys(); in check_key_in_hostfiles() 406 load_hostkeys(hostkeys, host, sysfile); in check_key_in_hostfiles() 420 load_hostkeys(hostkeys, host, user_hostfile); in check_key_in_hostfiles() 425 host_status = check_key_in_hostkeys(hostkeys, key, &found); in check_key_in_hostfiles() 435 free_hostkeys(hostkeys); in check_key_in_hostfiles()
|
| HD | sshconnect2.c | 108 struct hostkeys *hostkeys; in order_hostkeyalgs() local 114 hostkeys = init_hostkeys(); in order_hostkeyalgs() 116 load_hostkeys(hostkeys, hostname, options.user_hostfiles[i]); in order_hostkeyalgs() 118 load_hostkeys(hostkeys, hostname, options.system_hostfiles[i]); in order_hostkeyalgs() 136 if (lookup_key_in_hostkeys_by_type(hostkeys, in order_hostkeyalgs() 151 free_hostkeys(hostkeys); in order_hostkeyalgs()
|
| HD | sshconnect.c | 81 static int show_other_keys(struct hostkeys *, Key *); 844 struct hostkeys *host_hostkeys, *ip_hostkeys; in check_host_key() 1348 show_other_keys(struct hostkeys *hostkeys, Key *key) in show_other_keys() argument 1365 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found)) in show_other_keys()
|
| HD | PROTOCOL | 43 authentication for users and hostkeys. These methods are documented in
|
| HD | ChangeLog | 554 when showing other hostkeys, don't forget Ed25519 keys 632 support ed25519 keys (hostkeys and user identities) using the public 1332 add ssh-agent(1) support to sshd(8); allows encrypted hostkeys, 1333 or hostkeys on smartcards; most of the work by Zev Weiss; bz #1974
|
| HD | ssh_config.0 | 426 If hostkeys are known for the destination host then this default
|
| /NextBSD/crypto/openssh/regress/ |
| HD | ssh-com-client.sh | 47 mkdir -p ${OBJ}/${USER}/hostkeys 48 HK=${OBJ}/${USER}/hostkeys/key_${PORT}_127.0.0.1
|