37 #ifndef VIRGIL_CRYPTO_BASE64_H
38 #define VIRGIL_CRYPTO_BASE64_H
42 #include "../VirgilByteArray.h"
44 namespace virgil {
namespace crypto {
namespace foundation {
VirgilBase64()=delete
Deny object creation.
static virgil::crypto::VirgilByteArray decode(const std::string &base64str)
Transform given base64 string to the bytes.
static std::string encode(const virgil::crypto::VirgilByteArray &data)
Transform given bytes to the base64 string.
std::vector< unsigned char > VirgilByteArray
This type represents a sequence of bytes.
Definition: VirgilByteArray.h:50
Provides base64 encoding / decoding.
Definition: VirgilBase64.h:49