// // Készítette: Toldi Balázs Ádám // Dátum: 2020. 03. 27. // #ifndef BLOCKCHAIN_BASE58_H #define BLOCKCHAIN_BASE58_H #include #include #include #include namespace base58 { std::string encode(const char * data, int len); std::string encode(const std::string& data); } #endif //BLOCKCHAIN_BASE58_H