BitShares-Core  7.0.2
BitShares blockchain node software and command-line wallet software
base58.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <string>
3 #include <vector>
4 
5 namespace fc {
6  std::string to_base58( const char* d, size_t s );
7  std::string to_base58( const std::vector<char>& data );
8  std::vector<char> from_base58( const std::string& base58_str );
9  size_t from_base58( const std::string& base58_str, char* out_data, size_t out_data_len );
10 }
fc::to_base58
std::string to_base58(const char *d, size_t s)
Definition: base58.cpp:612
fc
Definition: api.hpp:15
fc::from_base58
std::vector< char > from_base58(const std::string &base58_str)
Definition: base58.cpp:622