1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-26 10:43:41 +02:00

core/string.h: move base58 functions to crypto/base58.h

This commit is contained in:
Henrik Hautakoski 2020-02-26 12:23:53 +01:00
parent 040d3457ef
commit 4a64da310b
5 changed files with 23 additions and 13 deletions

View file

@ -33,6 +33,10 @@ std::string base58_encode(const std::string& str);
std::string base58_encode(const std::vector<unsigned char>& vch);
std::string base58_encode(const unsigned char* pbegin, const unsigned char* pend);
bool is_base58(char ch);
std::string& base58_strip(std::string& str);
} //namespace eoskeygen
#endif /* EOSIOKEYGEN_CRYPTO_BASE58_H */