• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/OpenSSH-189/openssh/

Lines Matching defs:host_key

621 check_host_cert(const char *host, const Key *host_key)
625 if (key_cert_check_authority(host_key, 1, 0, host, &reason) != 0) {
629 if (buffer_len(&host_key->cert->critical) != 0) {
719 Key *host_key, int readonly,
733 int r, want_cert = key_is_cert(host_key), host_ip_differ = 0;
783 want_cert = key_is_cert(host_key);
784 type = key_type(host_key);
790 host_status = check_key_in_hostkeys(host_hostkeys, host_key,
799 ip_status = check_key_in_hostkeys(ip_hostkeys, host_key,
816 if (want_cert && !check_host_cert(hostname, host_key))
824 host_key, options.hash_known_hosts))
834 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
835 ra = key_fingerprint(host_key, SSH_FP_MD5,
846 if (check_host_key(hostname, hostaddr, 0, host_key,
868 if (show_other_keys(host_hostkeys, host_key))
875 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
876 ra = key_fingerprint(host_key, SSH_FP_MD5,
914 host, host_key, options.hash_known_hosts) &&
916 host_key, options.hash_known_hosts);
920 hostline, host_key,
925 host_key, options.hash_known_hosts);
990 warn_changed_key(host_key);
1116 raw_key = key_from_private(host_key);
1119 host_key = raw_key;
1135 verify_host_key(char *host, struct sockaddr *hostaddr, Key *host_key)
1140 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1141 debug("Server host key: %s %s", key_type(host_key), fp);
1145 if (!key_is_cert(host_key) && options.verify_host_key_dns &&
1146 verify_host_key_dns(host, hostaddr, host_key, &flags) == 0) {
1157 warn_changed_key(host_key);
1164 return check_host_key(host, hostaddr, options.port, host_key, RDRW,
1260 warn_changed_key(Key *host_key)
1264 fp = key_fingerprint(host_key, SSH_FP_MD5, SSH_FP_HEX);
1273 key_type(host_key), fp);