Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
wolfCrypt-py Release 5.8.2 (Jul 24, 2025)
==========================================

* Add support for ML-KEM
* Add support for ML-DSA
* Update to wolfSSL version 5.8.2

wolfCrypt-py Release 5.7.4 (Nov 13, 2024)
==========================================

Expand Down
2 changes: 1 addition & 1 deletion lib/wolfssl
Submodule wolfssl updated 1603 files
4 changes: 2 additions & 2 deletions scripts/build_ffi.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,8 @@ def build_ffi(local_wolfssl, features):
#include <wolfssl/wolfcrypt/curve25519.h>
#include <wolfssl/wolfcrypt/poly1305.h>
#include <wolfssl/wolfcrypt/chacha20_poly1305.h>
#include <wolfssl/wolfcrypt/kyber.h>
#include <wolfssl/wolfcrypt/wc_kyber.h>
#include <wolfssl/wolfcrypt/mlkem.h>
#include <wolfssl/wolfcrypt/wc_mlkem.h>
#include <wolfssl/wolfcrypt/dilithium.h>
"""

Expand Down
4 changes: 2 additions & 2 deletions wolfcrypt/_version.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# When bumping the C library version, reset the POST count to 0

__wolfssl_version__ = "v5.7.4-stable"
__wolfssl_version__ = "v5.8.2-stable"

# We're using implicit post releases [PEP 440] to bump package version
# while maintaining the C library version intact for better reference.
# https://www.python.org/dev/peps/pep-0440/#implicit-post-releases
#
# MAJOR.MINOR.BUILD-POST

__version__ = "5.7.4-0"
__version__ = "5.8.2-0"