Update zx meta

This commit is contained in:
Craig Everett 2025-01-23 14:32:20 +09:00
parent 0c36c788ed
commit 30944928da
9 changed files with 19 additions and 19 deletions

View File

@ -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,

View File

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

View File

@ -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,

View File

@ -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,

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("1.0.0").
-vsn("1.0.1").
-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("1.0.0").
-vsn("1.0.1").
-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("1.0.0").
-vsn("1.0.1").
-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("1.0.0").
-vsn("1.0.1").
-define(P, 16#FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F).
-define(A, 16#00).

View File

@ -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"}.