Skip to content

Commit e096dc8

Browse files
authored
Merge pull request #92 from ColtonWilley/wp_prep_102_release
version and changelog for 1.0.2 release
2 parents cc90902 + 85e0565 commit e096dc8

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

ChangeLog.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
# wolfProvider version 1.0.2 (March 21, 2025)
2+
3+
Release 1.0.2 has been developed according to wolfSSL's development and QA
4+
process and successfully passed the quality criteria.
5+
6+
PR stands for Pull Request, and PR <NUMBER> references a GitHub pull request
7+
number where the code change was added.
8+
9+
## New Feature Additions
10+
* Add RSA X931 signature algorithm implementation (PR 63)
11+
* Add DES3-CBC cipher implementation (PR 58)
12+
* Add PSS encoding support for PKCS8 private keys (PR 73)
13+
* Add option to build from FIPS bundle (PR 85)
14+
15+
## Enhancements and Optimizations
16+
* Improve AES-GCM performance (PR 69)
17+
* Set minimum RSA key size to 1024 bits (PR 53)
18+
* Add integration testing with nginx (PR 71)
19+
* Add integration testing with curl (PR 72)
20+
* Add integration testing with OpenVPN (PR 75)
21+
* Add feature to force failure if environment variable is set (PR 74)
22+
23+
## Bug Fixes
24+
* Fix RSA key type setting on import (PR 81)
25+
* Fix RSA parameter handling when getting parameters (PR 82)
26+
* Fix RSA import for Python use cases (PR 77)
27+
* Fix RSA and ECC keypair matching (PR 62)
28+
* Fix AES-GCM stream IV handling for OpenSSH workflows (PR 78)
29+
* Fix AES-CBC IV handling on reinit with NULL IV (PR 65)
30+
* Fix PKCS8 decoder to properly allow fallback decoding on failure (PR 59)
31+
* Fix parameter handling for EC encoding in OpenSSL genpkey flow (PR 80)
32+
* Fix HKDF handling to allow setting NULL/0 salt (PR 83)
33+
* Fix size_t conversion for macOS (PR 56)
34+
* Fix params get uint to properly set 'set' flag (PR 67)
35+
* Fix FIPS build issues (PR 61)
36+
* Fix TLS PRF test build (PR 79)
37+
* Fix nginx-related issues (PR 68)
38+
139
# wolfProvider version 1.0.1 (Sept 10, 2024)
240
* Add test-sanity script
341
* Add FIPS testing

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
AC_COPYRIGHT([Copyright (C) 2024 wolfSSL Inc.])
77
AC_PREREQ([2.69])
8-
AC_INIT([wolfprovider], [1.0.1])
8+
AC_INIT([wolfprov], [1.0.2])
99
AC_CONFIG_AUX_DIR([build-aux])
1010

1111
AC_CONFIG_HEADERS([include/config.h])

0 commit comments

Comments
 (0)