Returns the maximum number of bytes required to store a decoded base64 byte string.
| 44 | // Returns the maximum number of bytes required |
| 45 | // to store a decoded base64 byte string. |
| 46 | inline constexpr |
| 47 | size_t decoding_size(size_t n) |
| 48 | { |
| 49 | return n / 4 * 3; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Encoding map. |