[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,10 @@
config BR2_PACKAGE_PYTHON_RSA
bool "python-rsa"
select BR2_PACKAGE_PYTHON_PYASN1 # runtime
help
Python-RSA is a pure-Python RSA implementation. It supports
encryption and decryption, signing and verifying signatures,
and key generation according to PKCS\#1 version 1.5. It can
be used as a Python library as well as on the command line.
https://stuvel.eu/rsa

View File

@ -0,0 +1,5 @@
# From https://pypi.org/project/rsa/
sha256 5c6bd9dc7a543b7fe4304a631f8a8a3b674e2bbfc49c2ae96200cdbe55df6b17 rsa-4.8.tar.gz
# Locally computed
sha256 073f28b7d389c8fe74f607e17c27f81eaa5ace69edc43a884f23f41b41c5c726 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-rsa
#
################################################################################
PYTHON_RSA_VERSION = 4.8
PYTHON_RSA_SOURCE = rsa-$(PYTHON_RSA_VERSION).tar.gz
PYTHON_RSA_SITE = https://files.pythonhosted.org/packages/8c/ee/4022542e0fed77dd6ddade38e1e4dea3299f873b7fd4e6d78319953b0f83
PYTHON_RSA_SETUP_TYPE = setuptools
PYTHON_RSA_LICENSE = Apache-2.0
PYTHON_RSA_LICENSE_FILES = LICENSE
PYTHON_RSA_CPE_ID_VENDOR = python-rsa_project
$(eval $(python-package))