Skip to content

Instantly share code, notes, and snippets.

View 221V's full-sized avatar
🤔

Taras 221V

🤔
View GitHub Profile
-module(tpecdsa).
-export([generate_priv/0,minify/1,calc_pub/2,sign/2,verify/3]).
-export([secp256k1_ecdsa_sign/4,
secp256k1_ecdsa_verify/3,
secp256k1_ec_pubkey_create/2,
secp256k1_ec_pubkey_create/1
]).
-ifdef(TEST).
-include_lib("eunit/include/eunit.hrl").