Skip to content

Commit

Permalink
Merge pull request #198 from haydenroche5/120_release
Browse files Browse the repository at this point in the history
Prepare for 1.2.0 release.
  • Loading branch information
SparkiDev committed Sep 29, 2022
2 parents 18eb99d + f79e047 commit 6858852
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# wolfEngine Release 1.2.0 (September 29, 2022)
* ChangeLog.md is now shipped with releases.
* Random number generation now mixes in some additional weak entropy (e.g. PID)
to ensure unique numbers, even if the RNG state is copied into a forked process.
* Using wolfEngine with the wolfSSL FIPS 140-3 candidate code will now work as
intended in multi-threaded Windows applications. This was accomplished by adding
a `DllMain` function that calls `wolfCrypt_SetPrivateKeyReadEnable_fips` on new
thread creation.
* The RSA code now supports the `rsa_keygen_pubexp` control command string.
* The RSA code now has a `verify_recover` function.
* The automake code was adjusted to support builds not in the project root. This
is particularly useful for Yocto builds.
* The Visual Studio solution now has configurations to support the wolfSSL FIPS
140-3 candidate code.
* The random bytes function will now return success and do nothing if the
provided length is 0.
* Fixed a potential seg fault in `we_dh_compute_key_int` if `DH_get0_priv_key`
returned NULL.
* The DH code now supports the `dh_paramgen_prime_len` control command string.
* Attempting to use the control command `EVP_PKEY_CTRL_DH_PARAMGEN_GENERATOR`
will now return an error, as wolfCrypt doesn't support setting the generator for
DH.

# 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.
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

AC_COPYRIGHT([Copyright (C) 2019-2021 wolfSSL Inc.])
AC_PREREQ([2.69])
AC_INIT([wolfengine], [1.1.0])
AC_INIT([wolfengine], [1.2.0])
AC_CONFIG_AUX_DIR([build-aux])

AC_CONFIG_HEADERS([include/config.h])
Expand All @@ -26,7 +26,7 @@ AC_PROG_CC
AC_LANG(C)

# shared library versioning
WOLFENGINE_LIBRARY_VERSION=1:1:0
WOLFENGINE_LIBRARY_VERSION=1:2:0
# | | |
# +------+ | +---+
# | | |
Expand Down

0 comments on commit 6858852

Please sign in to comment.