Skip to content

Commit 345c0ab

Browse files
authored
Merge pull request #51 from bandi13/createV1.0.1
Prepare for release
2 parents b1c6664 + 36e71ed commit 345c0ab

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

ChangeLog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# wolfProvider version 1.0.1 (Sept 10, 2024)
2+
Add test-sanity script
3+
Add FIPS testing
4+
Add a sanity check to make sure we can connect to external servers
5+
Fix for openssl denying connections
6+
Add more logging of calls
7+
Add helpful failure messages
8+
Fix 'make check' failures
9+
Fix wp_corebio_get_bio
10+
Add in simple logging for wolfProvider
11+
Use custom list of supported settable parameters
12+
Explicit ignore of generated content
13+
Add simple Github Action
14+
Add in declarations and calls to tests
15+
Add AES CFB encryption/decryption + tests
16+
117
# wolfProvider version 1.0.0 (July 17, 2024)
218

319
This is the first release of wolfProvider. It is similar to wolfEngine (which

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ wolfProvider is a library that can be used as a Provider in OpenSSL.
5050
* TLS1 PRF
5151

5252
## Building
53+
The quickest method is to use the `scripts/build-wolfprovider.sh` script. It will retreive the dependencies and compile them as necessary. To use other than the default (such as different releases) you can set various environment variables prior to calling the script. An example is:
54+
OPENSSL_TAG=openssl-3.2.0 WOLFSSL_TAG=v5.7.2-stable WOLFPROV_DEBUG=1 scripts/build-wolfprovider.sh
55+
56+
Alternatively, you can manually compile each component using the following guide.
5357

5458
### OpenSSL
5559

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([wolfprov], [1.1.0-RC])
8+
AC_INIT([wolfprov], [1.0.1])
99
AC_CONFIG_AUX_DIR([build-aux])
1010

1111
AC_CONFIG_HEADERS([include/config.h])

0 commit comments

Comments
 (0)