peerplays-fc/include/fc/base58.hpp

9 lines
268 B
C++
Raw Normal View History

#pragma once
2012-09-30 21:01:14 +00:00
#include <fc/string.hpp>
namespace fc {
2012-12-18 19:37:14 +00:00
fc::string to_base58( const char* d, size_t s );
fc::vector<char> from_base58( const fc::string& base58_str );
size_t from_base58( const fc::string& base58_str, char* out_data, size_t out_data_len );
2012-09-30 21:01:14 +00:00
}