File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1+ # wolfEngine Release 1.3.0 (January 16, 2023)
2+ * Added RPM package support
3+ * Added support and tests for OpenSSL HMAC to be called with -1 key length
4+ * Updated examples to support use with OpenSSL 1.0.2
5+
16# wolfEngine Release 1.2.0 (September 29, 2022)
27* ChangeLog.md is now shipped with releases.
38* Random number generation now mixes in some additional weak entropy (e.g. PID)
Original file line number Diff line number Diff line change @@ -75,7 +75,8 @@ Use this configure command:
7575./configure --enable-engine
7676```
7777
78- This adds support for ` fips=v2 ` automatically. Replace this with
78+ This adds support for ` --enable-engine=fips-v2 ` automatically. Replace this with
79+ ` --enable-engine=fips-v5 ` if using a FIPSv5 140-3 bundle. Replace this with
7980` --enable-engine=fips-ready ` if using a FIPS Ready bundle. If your wolfSSL
8081version doesn't support ` --enable-engine ` , use this instead:
8182
Original file line number Diff line number Diff line change 55
66AC_COPYRIGHT ( [ Copyright (C) 2019-2021 wolfSSL Inc.] )
77AC_PREREQ ( [ 2.69] )
8- AC_INIT ( [ wolfengine] , [ 1.2 .0] )
8+ AC_INIT ( [ wolfengine] , [ 1.3 .0] )
99AC_CONFIG_AUX_DIR ( [ build-aux] )
1010
1111AC_CONFIG_HEADERS ( [ include/config.h] )
@@ -33,8 +33,8 @@ AC_SUBST([WOLFENGINE_CONFIG_ARGS])
3333# these numbers don't always line up nicely with the library version.
3434WOLFENGINE_LIBRARY_VERSION_FIRST=1
3535WOLFENGINE_LIBRARY_VERSION_SECOND=0
36- WOLFENGINE_LIBRARY_VERSION_THIRD=2
37- WOLFENGINE_LIBRARY_VERSION=1:2 :0
36+ WOLFENGINE_LIBRARY_VERSION_THIRD=3
37+ WOLFENGINE_LIBRARY_VERSION=1:3 :0
3838# | | |
3939# +------+ | +---+
4040# | | |
You can’t perform that action at this time.
0 commit comments