1config BR2_PACKAGE_PYTHON_CRYPTOGRAPHY 2 bool "python-cryptography" 3 depends on BR2_PACKAGE_PYTHON3 # python-idna 4 depends on BR2_INSTALL_LIBSTDCPP # python-pyasn 5 select BR2_PACKAGE_OPENSSL 6 select BR2_PACKAGE_PYTHON_CFFI # runtime 7 select BR2_PACKAGE_PYTHON_IDNA # runtime 8 select BR2_PACKAGE_PYTHON_ASN1CRYPTO # runtime 9 select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime 10 select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime 11 select BR2_PACKAGE_PYTHON_SIX # runtime 12 select BR2_PACKAGE_PYTHON3_SSL # runtime 13 help 14 cryptography is a package designed to expose cryptographic 15 primitives and recipes to Python developers. 16 17 https://cryptography.io 18 19comment "python-cryptography needs a toolchain w/ C++" 20 depends on BR2_PACKAGE_PYTHON3 21 depends on !BR2_INSTALL_LIBSTDCPP 22