/freebsd/crypto/openssh/ |
H A D | mac.c | 60 { "hmac-sha1", SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 0 }, 61 { "hmac-sha1-96", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 0 }, 70 { "hmac-sha1-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 0, 0, 0, 1 }, 71 { "hmac-sha1-96-etm@openssh.com", SSH_DIGEST, SSH_DIGEST_SHA1, 96, 0, 0, 1 },
|
H A D | kex-names.c | 56 { KEX_DH1, KEX_DH_GRP1_SHA1, 0, SSH_DIGEST_SHA1 }, 57 { KEX_DH14_SHA1, KEX_DH_GRP14_SHA1, 0, SSH_DIGEST_SHA1 }, 61 { KEX_DHGEX_SHA1, KEX_DH_GEX_SHA1, 0, SSH_DIGEST_SHA1 },
|
H A D | ssh-dss.c | 267 size_t rlen, slen, len, dlen = ssh_digest_bytes(SSH_DIGEST_SHA1); in ssh_dss_sign() 282 if ((ret = ssh_digest_memory(SSH_DIGEST_SHA1, data, datalen, in ssh_dss_sign() 337 size_t len, hlen = ssh_digest_bytes(SSH_DIGEST_SHA1); in ssh_dss_verify() 390 if ((ret = ssh_digest_memory(SSH_DIGEST_SHA1, data, dlen, in ssh_dss_verify()
|
H A D | ssh-rsa.c | 316 case SSH_DIGEST_SHA1: in rsa_hash_alg_ident() 334 return SSH_DIGEST_SHA1; in rsa_hash_id_from_ident() 355 return SSH_DIGEST_SHA1; in rsa_hash_id_from_keyname() 421 hash_alg = SSH_DIGEST_SHA1; in ssh_rsa_sign()
|
H A D | digest.h | 26 #define SSH_DIGEST_SHA1 1 macro
|
H A D | kexgex.c | 65 if (*hashlen < ssh_digest_bytes(SSH_DIGEST_SHA1)) in kexgex_hash()
|
H A D | hostfile.c | 106 if (ret != (int)ssh_hmac_bytes(SSH_DIGEST_SHA1)) { in extract_salt() 108 ssh_hmac_bytes(SSH_DIGEST_SHA1), ret); in extract_salt() 124 len = ssh_digest_bytes(SSH_DIGEST_SHA1); in host_hash() 136 if ((ctx = ssh_hmac_start(SSH_DIGEST_SHA1)) == NULL || in host_hash()
|
H A D | digest-openssl.c | 60 { SSH_DIGEST_SHA1, "SHA1", 20, EVP_sha1 },
|
H A D | digest-libc.c | 86 SSH_DIGEST_SHA1,
|
H A D | dns.c | 109 fp_alg = SSH_DIGEST_SHA1; in dns_read_key()
|
H A D | ssh-keygen.c | 887 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash; in do_download() 946 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash; in fingerprint_one_key() 1278 fptype = print_bubblebabble ? SSH_DIGEST_SHA1 : fingerprint_hash; in known_hosts_find_delete() 2434 SSH_DIGEST_SHA1, &blob, &blen) != 0) { in update_krl_from_file()
|
H A D | krl.c | 1200 if ((r = sshkey_fingerprint_raw(key, SSH_DIGEST_SHA1, in is_key_revoked()
|
H A D | readconf.c | 360 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL || in ssh_connection_hash() 369 return tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1)); in ssh_connection_hash()
|
H A D | sshkey.c | 503 case SSH_DIGEST_SHA1: in ssh_digest_to_md()
|
/freebsd/crypto/openssh/regress/unittests/sshkey/ |
H A D | test_file.c | 159 cp = sshkey_fingerprint(k1, SSH_DIGEST_SHA1, SSH_FP_BUBBLEBABBLE); in sshkey_file_tests() 251 cp = sshkey_fingerprint(k1, SSH_DIGEST_SHA1, SSH_FP_BUBBLEBABBLE); in sshkey_file_tests() 353 cp = sshkey_fingerprint(k1, SSH_DIGEST_SHA1, SSH_FP_BUBBLEBABBLE); in sshkey_file_tests() 420 cp = sshkey_fingerprint(k1, SSH_DIGEST_SHA1, SSH_FP_BUBBLEBABBLE); in sshkey_file_tests() 486 cp = sshkey_fingerprint(k1, SSH_DIGEST_SHA1, SSH_FP_BUBBLEBABBLE); in sshkey_file_tests() 552 cp = sshkey_fingerprint(k1, SSH_DIGEST_SHA1, SSH_FP_BUBBLEBABBLE); in sshkey_file_tests()
|