Home
last modified time | relevance | path

Searched refs:hashed_host (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/openssh/
H A Dhostfile.c441 char *hashed_host = NULL, *lhost; in format_host_entry() local
447 if ((hashed_host = host_hash(lhost, NULL, 0)) == NULL) { in format_host_entry()
452 if ((r = sshbuf_putf(entry, "%s ", hashed_host)) != 0) in format_host_entry()
461 free(hashed_host); in format_host_entry()
773 char *hashed_host = NULL; in match_maybe_hashed() local
779 if ((hashed_host = host_hash(host, names, nlen)) == NULL) in match_maybe_hashed()
781 ret = (nlen == strlen(hashed_host) && in match_maybe_hashed()
782 strncmp(hashed_host, names, nlen) == 0); in match_maybe_hashed()
783 free(hashed_host); in match_maybe_hashed()