Home
last modified time | relevance | path

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

/openbmc/linux/fs/crypto/
H A Dfname.c185 static const char base64url_table[65] = variable
216 *cp++ = base64url_table[(ac >> bits) & 0x3f]; in fscrypt_base64url_encode()
220 *cp++ = base64url_table[(ac << (6 - bits)) & 0x3f]; in fscrypt_base64url_encode()
247 const char *p = strchr(base64url_table, src[i]); in fscrypt_base64url_decode()
251 ac = (ac << 6) | (p - base64url_table); in fscrypt_base64url_decode()