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,[]}, {registered,[]},
{included_applications,[]}, {included_applications,[]},
{applications,[stdlib,kernel]}, {applications,[stdlib,kernel]},
{vsn,"0.1.0"}, {vsn,"1.0.0"},
{modules,[ed25519_eqc,eddsa_eqc,ec_utils,ecu_crypto,ecu_ecdsa, {modules,[ed25519_eqc,eddsa_eqc,ec_utils,ecu_crypto,ecu_ecdsa,
ecu_ed25519,ecu_eddsa,ecu_misc,ecu_secp256k1, ecu_ed25519,ecu_eddsa,ecu_misc,ecu_secp256k1,
benchmark_tests,crypto_tests,ecdsa_tests, benchmark_tests,crypto_tests,ecdsa_tests,

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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