17 lines
353 B
C++
17 lines
353 B
C++
//
|
|
// Készítette: Toldi Balázs Ádám
|
|
// Dátum: 2020. 03. 27.
|
|
//
|
|
|
|
#ifndef BLOCKCHAIN_BASE58_H
|
|
#define BLOCKCHAIN_BASE58_H
|
|
|
|
#include <string>
|
|
#include <cstring>
|
|
#include <vector>
|
|
#include <cassert>
|
|
namespace base58 {
|
|
std::string encode(const char * data, int len);
|
|
std::string encode(const std::string& data);
|
|
}
|
|
#endif //BLOCKCHAIN_BASE58_H
|