Update zx meta
This commit is contained in:
parent
0c36c788ed
commit
30944928da
@ -3,7 +3,7 @@
|
|||||||
{registered,[]},
|
{registered,[]},
|
||||||
{included_applications,[]},
|
{included_applications,[]},
|
||||||
{applications,[stdlib,kernel]},
|
{applications,[stdlib,kernel]},
|
||||||
{vsn,"1.0.0"},
|
{vsn,"1.0.1"},
|
||||||
{modules,[ecu_crypto_eqc,ed25519_eqc,eddsa_eqc,ec_utils,
|
{modules,[ecu_crypto_eqc,ed25519_eqc,eddsa_eqc,ec_utils,
|
||||||
ecu_crypto,ecu_ecdsa,ecu_ed25519,ecu_eddsa,ecu_misc,
|
ecu_crypto,ecu_ecdsa,ecu_ed25519,ecu_eddsa,ecu_misc,
|
||||||
ecu_secp256k1,benchmark_tests,crypto_tests,
|
ecu_secp256k1,benchmark_tests,crypto_tests,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
-module(ec_utils).
|
-module(ec_utils).
|
||||||
-vsn("1.0.0").
|
-vsn("1.0.1").
|
||||||
|
|
||||||
-export([]).
|
-export([]).
|
||||||
|
@ -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("1.0.0").
|
-vsn("1.0.1").
|
||||||
|
|
||||||
-export([private_to_short/2, public_to_short/2,
|
-export([private_to_short/2, public_to_short/2,
|
||||||
ec_recover/2,
|
ec_recover/2,
|
||||||
|
@ -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("1.0.0").
|
-vsn("1.0.1").
|
||||||
|
|
||||||
-export([sign/3, verify/4,
|
-export([sign/3, verify/4,
|
||||||
sign_secp256k1/2,
|
sign_secp256k1/2,
|
||||||
|
@ -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("1.0.0").
|
-vsn("1.0.1").
|
||||||
|
|
||||||
-define(P, 16#7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED).
|
-define(P, 16#7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED).
|
||||||
-define(N, 16#1000000000000000000000000000000014DEF9DEA2F79CD65812631A5CF5D3ED).
|
-define(N, 16#1000000000000000000000000000000014DEF9DEA2F79CD65812631A5CF5D3ED).
|
||||||
|
@ -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("1.0.0").
|
-vsn("1.0.1").
|
||||||
|
|
||||||
-export([sign_keypair/0,
|
-export([sign_keypair/0,
|
||||||
sign_seed_keypair/1,
|
sign_seed_keypair/1,
|
||||||
|
@ -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("1.0.0").
|
-vsn("1.0.1").
|
||||||
|
|
||||||
-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,
|
||||||
|
@ -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("1.0.0").
|
-vsn("1.0.1").
|
||||||
|
|
||||||
-define(P, 16#FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F).
|
-define(P, 16#FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F).
|
||||||
-define(A, 16#00).
|
-define(A, 16#00).
|
||||||
|
22
zomp.meta
22
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"}.
|
{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"}.
|
{c_email,"hanssv@gmail.com"}.
|
||||||
{copyright,"Hans Svensson"}.
|
{copyright,"Hans Svensson"}.
|
||||||
{deps,[{"otpr","sha3",{0,1,3}}]}.
|
|
||||||
{desc,"Helper functions for cryptography, mostly related to elliptic curves."}.
|
|
||||||
{file_exts,[]}.
|
{file_exts,[]}.
|
||||||
{key_name,none}.
|
|
||||||
{license,"MIT"}.
|
{license,"MIT"}.
|
||||||
{modules,[]}.
|
{repo_url,"https://git.qpq.swiss/QPQ-AG/ec_utils"}.
|
||||||
{name,"Elliptic Curve Utils"}.
|
|
||||||
{package_id,{"otpr","ec_utils",{1,0,0}}}.
|
|
||||||
{prefix,none}.
|
|
||||||
{repo_url,"https://github.com/hanssv/ec_utils"}.
|
|
||||||
{tags,["cryptography","elliptic curve","crypto","enacl"]}.
|
{tags,["cryptography","elliptic curve","crypto","enacl"]}.
|
||||||
{type,lib}.
|
{ws_url,"https://git.qpq.swiss/QPQ-AG/ec_utils"}.
|
||||||
{ws_url,"https://github.com/hanssv/ec_utils"}.
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user