Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef BASE64_HPP
- #define BASE64_HPP
- #include <string>
- namespace Alice
- {
- class Base64
- {
- public:
- static std::string Encode(unsigned char const* , unsigned int len);
- static std::string Decode(std::string encoded_string);
- };
- }
- #endif // !BASE64_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement