Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/base64/
Dbase64.c107 static uint8_t conv_ascii2bin(uint8_t a) { in conv_ascii2bin() function
228 a = conv_ascii2bin(*(in++)); in EVP_DecodeBase64()
229 b = conv_ascii2bin(*(in++)); in EVP_DecodeBase64()
238 c = conv_ascii2bin(*(in++)); in EVP_DecodeBase64()
243 d = conv_ascii2bin(*(in++)); in EVP_DecodeBase64()
284 if (in_len == 0 || (n == 0 && conv_ascii2bin(in[0]) == B64_EOF)) { in EVP_DecodeUpdate()
299 v = conv_ascii2bin(tmp); in EVP_DecodeUpdate()
434 while (conv_ascii2bin(*src) == B64_WS && src_len > 0) { in EVP_DecodeBlock()
441 while (src_len > 3 && B64_NOT_BASE64(conv_ascii2bin(src[src_len - 1]))) { in EVP_DecodeBlock()