Set version to 1.0.0

This commit is contained in:
Craig Everett 2022-08-31 16:34:04 +09:00
parent 8b2fd35408
commit 0a82f63d93
9 changed files with 11 additions and 11 deletions

View File

@ -3,7 +3,7 @@
{registered,[]},
{included_applications,[]},
{applications,[stdlib,kernel]},
{vsn,"0.1.0"},
{vsn,"1.0.0"},
{modules,[ed25519_eqc,eddsa_eqc,ec_utils,ecu_crypto,ecu_ecdsa,
ecu_ed25519,ecu_eddsa,ecu_misc,ecu_secp256k1,
benchmark_tests,crypto_tests,ecdsa_tests,

View File

@ -1,4 +1,4 @@
-module(ec_utils).
-vsn("0.1.0").
-vsn("1.0.0").
-export([]).

View File

@ -3,7 +3,7 @@
%%% Description :
%%% Created : 13 Jan 2022 by Hans Svensson
-module(ecu_crypto).
-vsn("0.1.0").
-vsn("1.0.0").
-export([private_to_short/2, public_to_short/2,
eth_sign/2, eth_recover/2, eth_verify/3, eth_msg_hash/1,

View File

@ -3,7 +3,7 @@
%%% Description : ecdsa functionality
%%% Created : 13 Jan 2022 by Hans Svensson
-module(ecu_ecdsa).
-vsn("0.1.0").
-vsn("1.0.0").
-export([sign/3, verify/4,
sign_secp256k1/2,

View File

@ -4,7 +4,7 @@
%%% Just for usage when speed isn't crucial...
%%% Created : 13 Jan 2022 by Hans Svensson
-module(ecu_ed25519).
-vsn("0.1.0").
-vsn("1.0.0").
-define(P, 16#7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED).
-define(N, 16#1000000000000000000000000000000014DEF9DEA2F79CD65812631A5CF5D3ED).

View File

@ -3,7 +3,7 @@
%%% Description : eddsa functionality - when possible compatible with enacl.
%%% Created : 19 Jan 2022 by Hans Svensson
-module(ecu_eddsa).
-vsn("0.1.0").
-vsn("1.0.0").
-export([sign_keypair/0,
sign_seed_keypair/1,

View File

@ -3,7 +3,7 @@
%%% Description : Misc. functionality
%%% Created : 13 Jan 2022 by Hans Svensson
-module(ecu_misc).
-vsn("0.1.0").
-vsn("1.0.0").
-export([eea/2, exp_mod/3,
hex_to_bin/1, bin_to_hex/1,

View File

@ -4,7 +4,7 @@
%%% Just for usage when speed isn't crucial...
%%% Created : 22 Dec 2021 by Hans Svensson
-module(ecu_secp256k1).
-vsn("0.1.0").
-vsn("1.0.0").
-define(P, 16#FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F).
-define(A, 16#00).

View File

@ -1,5 +1,5 @@
{a_email,"zxq9@zxq9.com"}.
{author,"Craig Everett"}.
{a_email,[]}.
{author,"Hans Svensson"}.
{c_email,[]}.
{copyright,"Hans Svensson"}.
{deps,[]}.
@ -9,7 +9,7 @@
{license,"MIT"}.
{modules,[]}.
{name,"Elliptic Curve Utils"}.
{package_id,{"otpr","ec_utils",{0,1,0}}}.
{package_id,{"otpr","ec_utils",{1,0,0}}}.
{prefix,none}.
{repo_url,"https://github.com/zxq9/ec_utils"}.
{tags,[]}.