| 60 | static constexpr char tableEncodeBase64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; |
| 61 | |
| 62 | static inline char EncodeChar(uint8_t b) { |
| 63 | return tableEncodeBase64[size_t(b)]; |
| 64 | } |
| 65 | |
| 66 | inline uint8_t DecodeChar(char c) { |
| 67 | if (c & 0x80) { |