18 #ifndef BITCOIN_BASE58_H
19 #define BITCOIN_BASE58_H
28 std::string encode_base58(
const unsigned char *pbegin,
29 const unsigned char *pend);
34 std::string encode_base58(
const std::vector<unsigned char> &vch);
41 bool decode_base58(
const char *psz, std::vector<unsigned char> &vchRet);
47 bool decode_base58(
const std::string &str, std::vector<unsigned char> &vchRet);
49 #endif // BITCOIN_BASE58_H