diff --git a/Makefile b/Makefile index 1967c00..8a78a0a 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ coverage: ## check code coverage quickly with the default Python coverage html $(BROWSER) htmlcov/index.html -docs: ## generate Sphinx HTML documentation, including API docs +docs: install ## generate Sphinx HTML documentation, including API docs rm -f docs/wolfcrypt.rst rm -f docs/modules.rst $(MAKE) -C docs clean diff --git a/src/wolfcrypt/__init__.py b/src/wolfcrypt/__init__.py index 9e39da1..e65143d 100644 --- a/src/wolfcrypt/__init__.py +++ b/src/wolfcrypt/__init__.py @@ -32,7 +32,7 @@ __wolfssl_version__ = "v3.13.0-stable" # # MAJOR.MINOR.BUILD-POST -__version__ = __wolfssl_version__[1:].replace("stable", "0") +__version__ = __wolfssl_version__[1:].replace("stable", "1") __author__ = "wolfSSL Inc." __email__ = "info@wolfssl.com" diff --git a/src/wolfcrypt/ciphers.py b/src/wolfcrypt/ciphers.py index 7de827a..535c0a2 100644 --- a/src/wolfcrypt/ciphers.py +++ b/src/wolfcrypt/ciphers.py @@ -228,7 +228,7 @@ class RsaPublic(_Rsa): def __init__(self, key): key = t2b(key) - super(RsaPublic, self).__init__() + _Rsa.__init__(self) idx = _ffi.new("word32*") idx[0] = 0 @@ -288,10 +288,10 @@ class RsaPublic(_Rsa): class RsaPrivate(RsaPublic): - def __init__(self, key): + def __init__(self, key): # pylint: disable=super-init-not-called key = t2b(key) - super(RsaPrivate, self).__init__() + _Rsa.__init__(self) # pylint: disable=non-parent-init-called idx = _ffi.new("word32*") idx[0] = 0