SVNからのミラー
This commit is contained in:
15
src/base32.hh
Normal file
15
src/base32.hh
Normal 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
|
||||
Reference in New Issue
Block a user