#ifndef BASE32_HH #define BASE32_HH #include #include class Base32 { public: static std::vector decode(const std::string &encoded); private: int char_to_val(char c); }; #endif