Home
last modified time | relevance | path

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

/linux-6.1.9/fs/crypto/
Dfname.c191 static const char base64url_table[65] = variable
222 *cp++ = base64url_table[(ac >> bits) & 0x3f]; in fscrypt_base64url_encode()
226 *cp++ = base64url_table[(ac << (6 - bits)) & 0x3f]; in fscrypt_base64url_encode()
253 const char *p = strchr(base64url_table, src[i]); in fscrypt_base64url_decode()
257 ac = (ac << 6) | (p - base64url_table); in fscrypt_base64url_decode()