Home
last modified time | relevance | path

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

/Linux-v5.15/fs/crypto/
Dfname.c182 static const char base64url_table[65] = variable
213 *cp++ = base64url_table[(ac >> bits) & 0x3f]; in fscrypt_base64url_encode()
217 *cp++ = base64url_table[(ac << (6 - bits)) & 0x3f]; in fscrypt_base64url_encode()
244 const char *p = strchr(base64url_table, src[i]); in fscrypt_base64url_decode()
248 ac = (ac << 6) | (p - base64url_table); in fscrypt_base64url_decode()