// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_BASE_64_H #define ICE_BASE_64_H #include #include #include namespace IceInternal { class ICE_API Base64 { public: static std::string encode(const std::vector&); static std::vector decode(const std::string&); static bool isBase64(char); private: static char encode(unsigned char); static unsigned char decode(char); }; } #endif