1
0
Fork 0
mirror of https://github.com/eosswedenorg/libantelope synced 2026-06-20 09:56:47 +02:00

Adding/Updating comments in public header files.

This commit is contained in:
Henrik Hautakoski 2020-05-19 14:55:57 +02:00
parent 45ae0b5791
commit b619ab78d4
5 changed files with 71 additions and 9 deletions

View file

@ -28,10 +28,19 @@
namespace libeosio {
/**
* Encode an EC private key to WIF String.
*/
std::string wif_priv_encode(ec_privkey_t priv);
/**
* Encode an EC public key to WIF String.
*/
std::string wif_pub_encode(ec_pubkey_t pub);
/**
* Prints an EC keypair in WIF format to standard out.
*/
void wif_print_key(const struct ec_keypair *key);
} // namespace libeosio