Home
last modified time | relevance | path

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

/reactos/modules/rosapps/applications/net/ncftp/ncftp/
H A Dutil.c46 static const unsigned char B64DecodeTable[256] = variable
157 ch = (((unsigned int) B64DecodeTable[c0]) << 2) | (((unsigned int) B64DecodeTable[c1]) >> 4); in FromBase64()
160 ch = (((unsigned int) B64DecodeTable[c1]) << 4) | (((unsigned int) B64DecodeTable[c2]) >> 2); in FromBase64()
163 ch = (((unsigned int) B64DecodeTable[c2]) << 6) | (((unsigned int) B64DecodeTable[c3])); in FromBase64()