peerplays-fc/include/fc/crypto/base58.hpp

10 lines
290 B
C++
Raw Normal View History

#pragma once
2012-09-30 21:01:14 +00:00
#include <fc/string.hpp>
2014-02-28 04:35:24 +00:00
#include <vector>
2012-09-30 21:01:14 +00:00
namespace fc {
std::string to_base58( const char* d, size_t s );
std::vector<char> from_base58( const std::string& base58_str );
size_t from_base58( const std::string& base58_str, char* out_data, size_t out_data_len );
2012-09-30 21:01:14 +00:00
}