Home
last modified time | relevance | path

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

/ohos5.0/base/security/device_security_level/baselib/utils/src/
H A Dutils_base64.c35 static const uint8_t g_base64DecodeTable[256] = { /* 256 due to character size */ variable
132 uint32_t a = g_base64DecodeTable[from[i++]]; in Base64Decode()
133 uint32_t b = g_base64DecodeTable[from[i++]]; in Base64Decode()
134 uint32_t c = g_base64DecodeTable[from[i++]]; in Base64Decode()
135 uint32_t d = g_base64DecodeTable[from[i++]]; in Base64Decode()