Searched refs:std_dict (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/crypto/external/bsd/heimdal/dist/lib/otp/
H A Dotp_print.c43 extern const char *const std_dict[];
68 std_dict[(key[0] << 3) | (key[1] >> 5)],
69 std_dict[((key[1] & 0x1F) << 6) | (key[2] >> 2)],
70 std_dict[((key[2] & 0x03) << 9) | (key[3] << 1) | (key[4] >> 7)],
71 std_dict[((key[4] & 0x7F) << 4) | (key[5] >> 4)],
72 std_dict[((key[5] & 0x0F) << 7) | (key[6] >> 1)],
73 std_dict[((key[6] & 0x01) << 10) | (key[7] << 2) | sum]);
H A Dotp_parse.c216 const char *const std_dict[2048] = variable

Completed in 92 milliseconds