Advertisement
Guest User

Base64.hpp

a guest
Dec 12th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #ifndef BASE64_HPP
  2. #define BASE64_HPP
  3.  
  4. #include <string>
  5.  
  6. namespace Alice
  7. {
  8.     class Base64
  9.     {
  10.         public:
  11.             static std::string Encode(unsigned char const* , unsigned int len);
  12.             static std::string Decode(std::string encoded_string);
  13.     };
  14. }
  15.  
  16.  
  17. #endif // !BASE64_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement