Home
last modified time | relevance | path

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

/systemd-251/src/basic/
Drecovery-key.c7 const char modhex_alphabet[16] = { variable
13 for (size_t i = 0; i < ELEMENTSOF(modhex_alphabet); i++) in decode_modhex_char()
15 if (modhex_alphabet[i] == x || (modhex_alphabet[i] - 32) == x) in decode_modhex_char()
61 mangled[j++] = modhex_alphabet[a]; in normalize_recovery_key()
62 mangled[j++] = modhex_alphabet[b]; in normalize_recovery_key()
96 formatted[j++] = modhex_alphabet[key[i] >> 4]; in make_recovery_key()
97 formatted[j++] = modhex_alphabet[key[i] & 0xF]; in make_recovery_key()
Drecovery-key.h12 extern const char modhex_alphabet[16];