Base64 is a simple character converter. It converts characters into nums, might be used in encryption protocols or as independent algorithm. It is a part of RedLibrary.
Function prototypes:
// Encryption.
inline std::string * Base64Encode(std::string *data);
// Decryption.
inline std::string * Base64Decode(std::string *data);
All material in this repository is in the public domain.