Samchon Framework for CPP
1.0.0
|
Utility class for base64 format's en-decoding. More...
#include <Base64.hpp>
Static Public Member Functions | |
template<typename Container > | |
static auto | encode (const Container &byte_array) -> std::string |
Encode from binary data to base64-string. More... | |
static auto | decode (const std::string &str) -> ByteArray |
Decode from base64-string to binary data. More... | |
Utility class for base64 format's en-decoding.
Base64 supports
Definition at line 26 of file Base64.hpp.
|
inlinestatic |
Encode from binary data to base64-string.
Encodes a binary data to base64-string
byte_array | binary data you want to encode |
Definition at line 37 of file Base64.hpp.
|
inlinestatic |
Decode from base64-string to binary data.
Decodes a base64 encoded string to binary data
str | A encoded string representing binary data as base64 format |
Definition at line 107 of file Base64.hpp.