mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-08-02 12:14:38 +02:00
moves wolfcrypt-py implementation to wrapper/python/wolfcrypt
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -186,3 +186,6 @@ wolfcrypt/user-crypto/lib/libusercrypto.*
|
|||||||
|
|
||||||
# wolfSSL CSharp wrapper
|
# wolfSSL CSharp wrapper
|
||||||
wrapper/CSharp/x64/
|
wrapper/CSharp/x64/
|
||||||
|
|
||||||
|
# Visual Studio Code Workspace Files
|
||||||
|
*.vscode
|
@@ -30,29 +30,29 @@ EXTRA_DIST+= wrapper/CSharp/wolfSSL_CSharp/wolfSSL.cs
|
|||||||
EXTRA_DIST+= wrapper/CSharp/wolfSSL_CSharp/wolfSSL_CSharp.csproj
|
EXTRA_DIST+= wrapper/CSharp/wolfSSL_CSharp/wolfSSL_CSharp.csproj
|
||||||
|
|
||||||
# wolfcrypt python wrapper files
|
# wolfcrypt python wrapper files
|
||||||
EXTRA_DIST+= wrapper/python/.gitignore
|
EXTRA_DIST+= wrapper/python/wolfcrypt/.gitignore
|
||||||
EXTRA_DIST+= wrapper/python/docs/asymmetric.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/asymmetric.rst
|
||||||
EXTRA_DIST+= wrapper/python/docs/conf.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/conf.py
|
||||||
EXTRA_DIST+= wrapper/python/docs/digest.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/digest.rst
|
||||||
EXTRA_DIST+= wrapper/python/docs/index.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/index.rst
|
||||||
EXTRA_DIST+= wrapper/python/docs/mac.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/mac.rst
|
||||||
EXTRA_DIST+= wrapper/python/docs/Makefile
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/Makefile
|
||||||
EXTRA_DIST+= wrapper/python/docs/random.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/random.rst
|
||||||
EXTRA_DIST+= wrapper/python/docs/symmetric.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/docs/symmetric.rst
|
||||||
EXTRA_DIST+= wrapper/python/LICENSING.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/LICENSING.rst
|
||||||
EXTRA_DIST+= wrapper/python/MANIFEST.in
|
EXTRA_DIST+= wrapper/python/wolfcrypt/MANIFEST.in
|
||||||
EXTRA_DIST+= wrapper/python/README.rst
|
EXTRA_DIST+= wrapper/python/wolfcrypt/README.rst
|
||||||
EXTRA_DIST+= wrapper/python/requirements-testing.txt
|
EXTRA_DIST+= wrapper/python/wolfcrypt/requirements-testing.txt
|
||||||
EXTRA_DIST+= wrapper/python/setup.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/setup.py
|
||||||
EXTRA_DIST+= wrapper/python/test/test_ciphers.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_ciphers.py
|
||||||
EXTRA_DIST+= wrapper/python/test/test_hashes.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_hashes.py
|
||||||
EXTRA_DIST+= wrapper/python/test/test_random.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/test/test_random.py
|
||||||
EXTRA_DIST+= wrapper/python/tox.ini
|
EXTRA_DIST+= wrapper/python/wolfcrypt/tox.ini
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/__about__.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/__about__.py
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/__init__.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/__init__.py
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/build_ffi.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/build_ffi.py
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/ciphers.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/ciphers.py
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/exceptions.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/exceptions.py
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/hashes.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/hashes.py
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/random.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/random.py
|
||||||
EXTRA_DIST+= wrapper/python/wolfcrypt/utils.py
|
EXTRA_DIST+= wrapper/python/wolfcrypt/wolfcrypt/utils.py
|
||||||
|
@@ -117,8 +117,8 @@ Testing ``wolfcrypt``'s source code with ``tox`` :
|
|||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
To run the unit tests in the source code, you'll need ``tox`` and a few other
|
To run the unit tests in the source code, you'll need ``tox`` and a few other
|
||||||
requirements. The source code relies at 'WOLFSSL_DIR/wrapper/python' where
|
requirements. The source code relies at 'WOLFSSL_DIR/wrapper/python/wolfcrypt'
|
||||||
WOLFSSL_DIR is the path of ``wolfssl``'s source code.
|
where WOLFSSL_DIR is the path of ``wolfssl``'s source code.
|
||||||
|
|
||||||
1. Make sure that the testing requirements are installed:
|
1. Make sure that the testing requirements are installed:
|
||||||
|
|
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
metadata = dict(
|
metadata = dict(
|
||||||
__name__ = "wolfcrypt",
|
__name__ = "wolfcrypt",
|
||||||
__version__ = "0.1.8",
|
__version__ = "0.1.9",
|
||||||
__license__ = "GPLv2 or Commercial License",
|
__license__ = "GPLv2 or Commercial License",
|
||||||
__author__ = "wolfSSL Inc.",
|
__author__ = "wolfSSL Inc.",
|
||||||
__author_email__ = "info@wolfssl.com",
|
__author_email__ = "info@wolfssl.com",
|
Reference in New Issue
Block a user