This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SimPas1/src/base32.hh
2026-01-21 04:47:40 +09:00

16 lines
225 B
C++

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