diff --git a/ebin/ec_utils.app b/ebin/ec_utils.app index 0677767..b29c96f 100644 --- a/ebin/ec_utils.app +++ b/ebin/ec_utils.app @@ -3,7 +3,7 @@ {registered,[]}, {included_applications,[]}, {applications,[stdlib,kernel]}, - {vsn,"1.0.0"}, + {vsn,"1.0.1"}, {modules,[ecu_crypto_eqc,ed25519_eqc,eddsa_eqc,ec_utils, ecu_crypto,ecu_ecdsa,ecu_ed25519,ecu_eddsa,ecu_misc, ecu_secp256k1,benchmark_tests,crypto_tests, diff --git a/src/ec_utils.erl b/src/ec_utils.erl index 113beb4..166b11d 100644 --- a/src/ec_utils.erl +++ b/src/ec_utils.erl @@ -1,4 +1,4 @@ -module(ec_utils). --vsn("1.0.0"). +-vsn("1.0.1"). -export([]). diff --git a/src/ecu_crypto.erl b/src/ecu_crypto.erl index 4034846..170d52c 100644 --- a/src/ecu_crypto.erl +++ b/src/ecu_crypto.erl @@ -3,7 +3,7 @@ %%% Description : %%% Created : 13 Jan 2022 by Hans Svensson -module(ecu_crypto). --vsn("1.0.0"). +-vsn("1.0.1"). -export([private_to_short/2, public_to_short/2, ec_recover/2, diff --git a/src/ecu_ecdsa.erl b/src/ecu_ecdsa.erl index 17d29ea..72a82ff 100644 --- a/src/ecu_ecdsa.erl +++ b/src/ecu_ecdsa.erl @@ -3,7 +3,7 @@ %%% Description : ecdsa functionality %%% Created : 13 Jan 2022 by Hans Svensson -module(ecu_ecdsa). --vsn("1.0.0"). +-vsn("1.0.1"). -export([sign/3, verify/4, sign_secp256k1/2, diff --git a/src/ecu_ed25519.erl b/src/ecu_ed25519.erl index 8fc4bf9..616678d 100644 --- a/src/ecu_ed25519.erl +++ b/src/ecu_ed25519.erl @@ -4,7 +4,7 @@ %%% Just for usage when speed isn't crucial... %%% Created : 13 Jan 2022 by Hans Svensson -module(ecu_ed25519). --vsn("1.0.0"). +-vsn("1.0.1"). -define(P, 16#7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED). -define(N, 16#1000000000000000000000000000000014DEF9DEA2F79CD65812631A5CF5D3ED). diff --git a/src/ecu_eddsa.erl b/src/ecu_eddsa.erl index c45304b..489c5a8 100644 --- a/src/ecu_eddsa.erl +++ b/src/ecu_eddsa.erl @@ -3,7 +3,7 @@ %%% Description : eddsa functionality - when possible compatible with enacl. %%% Created : 19 Jan 2022 by Hans Svensson -module(ecu_eddsa). --vsn("1.0.0"). +-vsn("1.0.1"). -export([sign_keypair/0, sign_seed_keypair/1, diff --git a/src/ecu_misc.erl b/src/ecu_misc.erl index 4f2d7c3..727b781 100644 --- a/src/ecu_misc.erl +++ b/src/ecu_misc.erl @@ -3,7 +3,7 @@ %%% Description : Misc. functionality %%% Created : 13 Jan 2022 by Hans Svensson -module(ecu_misc). --vsn("1.0.0"). +-vsn("1.0.1"). -export([eea/2, exp_mod/3, hex_to_bin/1, bin_to_hex/1, diff --git a/src/ecu_secp256k1.erl b/src/ecu_secp256k1.erl index 7811d8c..18358db 100644 --- a/src/ecu_secp256k1.erl +++ b/src/ecu_secp256k1.erl @@ -4,7 +4,7 @@ %%% Just for usage when speed isn't crucial... %%% Created : 22 Dec 2021 by Hans Svensson -module(ecu_secp256k1). --vsn("1.0.0"). +-vsn("1.0.1"). -define(P, 16#FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F). -define(A, 16#00). diff --git a/zomp.meta b/zomp.meta index d12abf7..b689a3b 100644 --- a/zomp.meta +++ b/zomp.meta @@ -1,17 +1,17 @@ -{a_email,"hanssv@gmail.com"}. +{name,"Elliptic Curve Utils"}. +{type,lib}. +{modules,[]}. +{prefix,none}. +{desc,"Helper functions for cryptography, mostly related to elliptic curves."}. {author,"Hans Svensson"}. +{package_id,{"otpr","ec_utils",{1,0,1}}}. +{deps,[{"otpr","sha3",{0,1,5}}]}. +{key_name,none}. +{a_email,"hanssv@gmail.com"}. {c_email,"hanssv@gmail.com"}. {copyright,"Hans Svensson"}. -{deps,[{"otpr","sha3",{0,1,3}}]}. -{desc,"Helper functions for cryptography, mostly related to elliptic curves."}. {file_exts,[]}. -{key_name,none}. {license,"MIT"}. -{modules,[]}. -{name,"Elliptic Curve Utils"}. -{package_id,{"otpr","ec_utils",{1,0,0}}}. -{prefix,none}. -{repo_url,"https://github.com/hanssv/ec_utils"}. +{repo_url,"https://git.qpq.swiss/QPQ-AG/ec_utils"}. {tags,["cryptography","elliptic curve","crypto","enacl"]}. -{type,lib}. -{ws_url,"https://github.com/hanssv/ec_utils"}. +{ws_url,"https://git.qpq.swiss/QPQ-AG/ec_utils"}.