[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_ECDSA
bool "python-ecdsa"
select BR2_PACKAGE_PYTHON_SIX # runtime
help
ECDSA cryptographic signature library (pure python).
http://github.com/tlsfuzzer/python-ecdsa

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/ecdsa/json
md5 d0dd59c43af0f640a60599551529f5d0 ecdsa-0.17.0.tar.gz
sha256 b9f500bb439e4153d0330610f5d26baaf18d17b8ced1bc54410d189385ea68aa ecdsa-0.17.0.tar.gz
# Locally computed sha256 checksums
sha256 3eca9845773d2e5b8cc9d8c119d345f00a4806e4bd660d4a3d6cdf9c0e9d8bb2 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-ecdsa
#
################################################################################
PYTHON_ECDSA_VERSION = 0.17.0
PYTHON_ECDSA_SOURCE = ecdsa-$(PYTHON_ECDSA_VERSION).tar.gz
PYTHON_ECDSA_SITE = https://files.pythonhosted.org/packages/bf/3d/3d909532ad541651390bf1321e097404cbd39d1d89c2046f42a460220fb3
PYTHON_ECDSA_SETUP_TYPE = setuptools
PYTHON_ECDSA_LICENSE = MIT
PYTHON_ECDSA_LICENSE_FILES = LICENSE
PYTHON_ECDSA_CPE_ID_VENDOR = python-ecdsa_project
$(eval $(python-package))