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
34 changes: 34 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
# wolfProvider version 1.1.1 (February 09, 2026)

Release 1.1.1 has been developed according to wolfSSL's development and QA
process and successfully passed the quality criteria.

PR stands for Pull Request, and PR <NUMBER> references a GitHub pull request
number where the code change was added.

## New Feature Additions
* Add OpenSSL FIPS baseline process implementation (PR 357)
* Add seed-src handling for wolfProvider (PR 350)
* Add EC public key auto derivation from private key (PR 338)
* Add text encoder for ECC (PR 348)
* Add option for debug output to default to silent (PR 356)
* Add static analysis CI tools (PR 349)
* Add option to enable unit testing for replace default mode (PR 331)

## Enhancements and Optimizations
* Optimize FIPS CAST startup tests (PR 351)
* Update TLS 1.3 KDF to use proper wolfcrypt FIPS APIs (PR 352)
* Restrict DH keygen to 2048 bits and above for FIPS builds (PR 336)
* Update wolfSSL version to v5.8.4 and OpenSSL to v3.5.4 (PR 334)
* Don't modify system config when installing in standalone mode (PR 335)
* Add RSA-PSS PKI encoding/decoding support (PR 333)

## Bug Fixes
* Fix NULL salt handling in HKDF (PR 328)
* Fix EC public key auto-derive version check for OpenSSL 4.0.0+ (PR 355)
* Fix RSA-PSS command test (PR 344)
* Fix const issue with x509 test code (PR 346)
* Fix provider cmd test (PR 347)
* Fix size_t issue in test_ecc.c (PR 343)
* Fix RD detection when running cmdline tests (PR 354)

# wolfProvider version 1.1.0 (October 29, 2025)

Release 1.1.0 has been developed according to wolfSSL's development and QA
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

AC_COPYRIGHT([Copyright (C) 2024 wolfSSL Inc.])
AC_PREREQ([2.69])
AC_INIT([wolfprov], [1.1.0])
AC_INIT([wolfprov], [1.1.1])
AC_CONFIG_AUX_DIR([build-aux])

AC_CONFIG_HEADERS([include/config.h])
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libwolfprov (1.1.1-1) unstable; urgency=medium

* Release version 1.1.1-1

-- WolfSSL Developer <support@wolfssl.com> Mon, 09 Feb 2026 12:00:00 -0700

libwolfprov (1.1.0-1) unstable; urgency=medium

* Release version 1.1.0-1
Expand Down
Loading