Home
last modified time | relevance | path

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

/external/openssh/
Dsshkey.c932 fingerprint_b64(const char *alg, u_char *dgst_raw, size_t dgst_raw_len) in fingerprint_b64() argument
945 if ((r = b64_ntop(dgst_raw, dgst_raw_len, in fingerprint_b64()
957 fingerprint_hex(const char *alg, u_char *dgst_raw, size_t dgst_raw_len) in fingerprint_hex() argument
968 i > 0 ? ":" : "", dgst_raw[i]); in fingerprint_hex()
975 fingerprint_bubblebabble(u_char *dgst_raw, size_t dgst_raw_len) in fingerprint_bubblebabble() argument
990 idx0 = (((((u_int)(dgst_raw[2 * i])) >> 6) & 3) + in fingerprint_bubblebabble()
992 idx1 = (((u_int)(dgst_raw[2 * i])) >> 2) & 15; in fingerprint_bubblebabble()
993 idx2 = ((((u_int)(dgst_raw[2 * i])) & 3) + in fingerprint_bubblebabble()
999 idx3 = (((u_int)(dgst_raw[(2 * i) + 1])) >> 4) & 15; in fingerprint_bubblebabble()
1000 idx4 = (((u_int)(dgst_raw[(2 * i) + 1]))) & 15; in fingerprint_bubblebabble()
[all …]