diff --git a/security/py-slip10/Makefile b/security/py-slip10/Makefile new file mode 100644 index 000000000000..cc1e6ee9befc --- /dev/null +++ b/security/py-slip10/Makefile @@ -0,0 +1,24 @@ +PORTNAME= slip10 +DISTVERSION= 1.1.0 +CATEGORIES= security python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Reference implementation of SLIP-0010 key derivation +WWW= https://github.com/trezor/python-slip10 \ + https://pypi.org/project/slip10/ + +LICENSE= BSD3CLAUSE MIT +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/LICENCE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=0:devel/py-poetry-core@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent pep517 + +NO_ARCH= yes + +.include diff --git a/security/py-slip10/distinfo b/security/py-slip10/distinfo new file mode 100644 index 000000000000..f61099e52c1f --- /dev/null +++ b/security/py-slip10/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1771246831 +SHA256 (slip10-1.1.0.tar.gz) = d248d3df26f123f08474339c45f0f264254f74ae9a5657234a1d5eb91f0c4d54 +SIZE (slip10-1.1.0.tar.gz) = 14541 diff --git a/security/py-slip10/pkg-descr b/security/py-slip10/pkg-descr new file mode 100644 index 000000000000..5c1887d56c63 --- /dev/null +++ b/security/py-slip10/pkg-descr @@ -0,0 +1,8 @@ +slip10 is a reference implementation of the SLIP-0010 specification, +which generalizes BIP-0032 hierarchical deterministic key derivation for +multiple curves, including secp256k1, NIST P-256, ed25519, and +curve25519. + +It supports deriving extended private and public keys along standard +paths and can operate from either seed material or serialized extended +keys.