MCPcopy Create free account
hub / github.com/acl-dev/acl / encode

Method encode

lib_acl_cpp/src/mime/mime_base64.cpp:42–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42void 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
49void mime_base64::decode(const char* in, int n, string* out)
50{

Callers

nothing calls this directly

Calls 2

encode_updateMethod · 0.45
encode_finishMethod · 0.45

Tested by

no test coverage detected