diff --git a/ChangeLog.md b/ChangeLog.md index 51b1373..851c8b8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,12 @@ +# wolfEngine Release 1.1.0 (May 16, 2022) +* Updated README.md to refer to new wolfSSL configure flag `--enable-engine`. +* Fixed a double free bug in certain error cases in the ECC code. +* Added examples/ and engine.conf to the distribution. +* Fixed a bug in the AES-CTR implementation where partial block data from a +previous operation would leak into the current operation, even when the IV was +changed between operations. +* Added support for X9.31 padding with RSA signatures. + # wolfEngine Release 1.0.0 (March 7, 2022) * Added the examples/ directory. * Added logic to openssl-unit-tests.sh to support macOS. diff --git a/configure.ac b/configure.ac index b909efd..c4621a4 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_COPYRIGHT([Copyright (C) 2019-2021 wolfSSL Inc.]) AC_PREREQ([2.69]) -AC_INIT([wolfengine], [1.0.0]) +AC_INIT([wolfengine], [1.1.0]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([include/config.h]) @@ -26,7 +26,7 @@ AC_PROG_CC AC_LANG(C) # shared library versioning -WOLFENGINE_LIBRARY_VERSION=1:0:0 +WOLFENGINE_LIBRARY_VERSION=1:1:0 # | | | # +------+ | +---+ # | | |