Searched defs:hostkeys (Results 1 - 4 of 4) sorted by relevance

/external/openssh/
H A Dauth.c417 struct hostkeys *hostkeys; local
420 hostkeys = init_hostkeys();
421 load_hostkeys(hostkeys, host, sysfile);
435 load_hostkeys(hostkeys, host, user_hostfile);
440 host_status = check_key_in_hostkeys(hostkeys, key, &found);
450 free_hostkeys(hostkeys);
H A Dhostfile.c65 struct hostkeys { struct
222 struct hostkeys *
225 struct hostkeys *ret = xcalloc(1, sizeof(*ret));
234 struct hostkeys *hostkeys; member in struct:load_callback_ctx
241 struct hostkeys *hostkeys = ctx->hostkeys; local
245 error("%s:%ld: parse error in hostkeys file",
254 if ((tmp = reallocarray(hostkeys
271 load_hostkeys(struct hostkeys *hostkeys, const char *host, const char *path) argument
292 free_hostkeys(struct hostkeys *hostkeys) argument
308 check_key_not_revoked(struct hostkeys *hostkeys, struct sshkey *k) argument
342 check_hostkeys_by_key_or_type(struct hostkeys *hostkeys, struct sshkey *k, int keytype, const struct hostkey_entry **found) argument
401 check_key_in_hostkeys(struct hostkeys *hostkeys, struct sshkey *key, const struct hostkey_entry **found) argument
410 lookup_key_in_hostkeys_by_type(struct hostkeys *hostkeys, int keytype, const struct hostkey_entry **found) argument
[all...]
H A Dsshconnect.c83 static int show_other_keys(struct hostkeys *, Key *);
822 struct hostkeys *host_hostkeys, *ip_hostkeys;
1387 show_other_keys(struct hostkeys *hostkeys, Key *key) argument
1404 if (!lookup_key_in_hostkeys_by_type(hostkeys, type[i], &found))
H A Dsshconnect2.c107 struct hostkeys *hostkeys; local
111 /* Find all hostkeys for this hostname */
113 hostkeys = init_hostkeys();
115 load_hostkeys(hostkeys, hostname, options.user_hostfiles[i]);
117 load_hostkeys(hostkeys, hostname, options.system_hostfiles[i]);
135 if (lookup_key_in_hostkeys_by_type(hostkeys,
151 free_hostkeys(hostkeys);
1631 debug("No more client hostkeys for hostbased authentication.");

Completed in 86 milliseconds