From e935f02432cdb255157f963480306afcbee145a5 Mon Sep 17 00:00:00 2001 From: Robert de Vries Date: Fri, 17 Apr 2026 21:28:36 +0200 Subject: [PATCH] Add __wolfssl_version__ to exported symbols. The WolfSSL version is imported, but not exposed to users. --- wolfcrypt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/__init__.py b/wolfcrypt/__init__.py index d7e8721..a3f893b 100644 --- a/wolfcrypt/__init__.py +++ b/wolfcrypt/__init__.py @@ -31,7 +31,7 @@ __copyright__ = "Copyright (C) 2006-2022 wolfSSL Inc" __all__ = [ - "__title__", "__summary__", "__uri__", "__version__", + "__title__", "__summary__", "__uri__", "__version__", "__wolfssl_version__", "__author__", "__email__", "__license__", "__copyright__", "ciphers", "hashes", "random", "pwdbased" ]