SVNからのミラー

This commit is contained in:
2026-01-21 04:47:40 +09:00
commit 81a90a99e1
47 changed files with 2619 additions and 0 deletions

15
src/base32.hh Normal file
View File

@@ -0,0 +1,15 @@
#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