| 40 | } |
| 41 | |
| 42 | void mime_base64::encode(const char* in, int n, string* out) |
| 43 | { |
| 44 | mime_base64 coder(false, false); |
| 45 | coder.encode_update(in, n, out); |
| 46 | coder.encode_finish(out); |
| 47 | } |
| 48 | |
| 49 | void mime_base64::decode(const char* in, int n, string* out) |
| 50 | { |
nothing calls this directly
no test coverage detected