Home
last modified time | relevance | path

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

/external/openssh/
Dsshkey.c954 fingerprint_b64(const char *alg, u_char *dgst_raw, size_t dgst_raw_len) in fingerprint_b64() argument
967 if ((r = b64_ntop(dgst_raw, dgst_raw_len, in fingerprint_b64()
979 fingerprint_hex(const char *alg, u_char *dgst_raw, size_t dgst_raw_len) in fingerprint_hex() argument
990 i > 0 ? ":" : "", dgst_raw[i]); in fingerprint_hex()
997 fingerprint_bubblebabble(u_char *dgst_raw, size_t dgst_raw_len) in fingerprint_bubblebabble() argument
1012 idx0 = (((((u_int)(dgst_raw[2 * i])) >> 6) & 3) + in fingerprint_bubblebabble()
1014 idx1 = (((u_int)(dgst_raw[2 * i])) >> 2) & 15; in fingerprint_bubblebabble()
1015 idx2 = ((((u_int)(dgst_raw[2 * i])) & 3) + in fingerprint_bubblebabble()
1021 idx3 = (((u_int)(dgst_raw[(2 * i) + 1])) >> 4) & 15; in fingerprint_bubblebabble()
1022 idx4 = (((u_int)(dgst_raw[(2 * i) + 1]))) & 15; in fingerprint_bubblebabble()
[all …]