| 47 | } |
| 48 | |
| 49 | void mime_base64::decode(const char* in, int n, string* out) |
| 50 | { |
| 51 | mime_base64 decoder(false, false); |
| 52 | decoder.decode_update(in, n, out); |
| 53 | decoder.decode_finish(out); |
| 54 | } |
| 55 | |
| 56 | } // namespace acl |
| 57 |
nothing calls this directly
no test coverage detected