| 59 | } |
| 60 | |
| 61 | inline bool is_valid_base64_char(char c) { |
| 62 | return decode_table[c] != 0x64; |
| 63 | } |
| 64 | |
| 65 | inline bool is_valid_base64_str(const std::string_view encoded_str) { |
| 66 | if ((encoded_str.size() % 4) == 1) { |
no outgoing calls
no test coverage detected