Skip to content

Commit

Permalink
Merge pull request #182 from haydenroche5/1_0_0_release
Browse files Browse the repository at this point in the history
Prepare for 1.0.0 release.
  • Loading branch information
SparkiDev authored Mar 7, 2022
2 parents 40eb265 + 7a2e6b8 commit 74adbdf
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 17 deletions.
19 changes: 18 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# wolfEngine Release 1.0.0 (March 7, 2022)
* Added the examples/ directory.
* Added logic to openssl-unit-tests.sh to support macOS.
* Reworked the AES-GCM implementation to support all OpenSSL use cases. Added a
unit test to exercise AES-GCM with the `EVP_Cipher()` API.
* Made some error return codes in the ECC code consistent with OpenSSL.
* Fixed some OpenSSL version gates in the ECC code.
* Adjusted wolfEngine initialization code to support FIPS v5 (140-3).
* Added control commands for enabling wolfSSL debug logging and setting the
wolfSSL debug log callback.
* Added a FIPS integrity check callback so that if the check fails, it's
reported to the user, along with the necessary hash value.
* Improved Visual Studio support.
* Added some additional HMAC functions that were needed when running the OpenSSL
1.1.1m unit tests with wolfEngine.

# wolfEngine Release 0.9.0 (November 12, 2021)

This is the first official release of wolfEngine. Please refer to README.md for more information.
This is the first official release of wolfEngine. Please refer to README.md for
more information.
8 changes: 1 addition & 7 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ include src/include.am
include include/include.am
include test/include.am
include scripts/include.am
include windows/include.am

noinst_PROGRAMS += bench
bench_SOURCES = bench.c
Expand All @@ -39,10 +40,3 @@ AM_DISTCHECK_CONFIGURE_FLAGS=CPPFLAGS="-I@abs_top_srcdir@/include \
LDFLAGS="@OPENSSL_LDFLAGS@"

EXTRA_DIST+= README.md

EXTRA_DIST += \
wolfEngine.sln \
wolfEngine.vcxproj \
wolfEngine.vcxproj.filters \
wolfEngine.vcxproj.user \
user_settings.h
2 changes: 1 addition & 1 deletion 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], [0.9.0])
AC_INIT([wolfengine], [1.0.0])
AC_CONFIG_AUX_DIR([build-aux])

AC_CONFIG_HEADERS([include/config.h])
Expand Down
2 changes: 1 addition & 1 deletion src/we_ecc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2485,7 +2485,7 @@ static int we_ec_key_sign(int type, const unsigned char *dgst, int dLen,
* @param dLen [in] Length of digest.
* @param sig [in] Signature data.
* @param sigLen [in] Length of signature data.
* @returns 11 on successful verification, 0 on failure, and -1 on error.
* @returns 1 on successful verification, 0 on failure, and -1 on error.
*/
static int we_ec_key_verify(int type, const unsigned char *dgst, int dLen,
const unsigned char *sig, int sigLen, EC_KEY *ecKey)
Expand Down
7 changes: 0 additions & 7 deletions test/include.am
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,3 @@ test_unit_test_SOURCES = \
test/unit.c
test_unit_test_LDADD = libwolfengine.la
noinst_HEADERS += test/unit.h

EXTRA_DIST += \
test/test.vcxproj \
test/test.vcxproj.filters \
test/test.vcxproj.user \
test/resource.h \
test/test.rc
52 changes: 52 additions & 0 deletions windows/include.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
EXTRA_DIST += \
windows/fips_140_2/user_settings.h \
windows/fips_ready/user_settings.h \
windows/non_fips/user_settings.h \
windows/props/dll_release_non_fips_wolfengine.props \
windows/props/fips_140_2.props \
windows/props/fips_ready.props \
windows/props/non_fips.props \
windows/props/release_fips.props \
windows/props/release_fips_test.props \
windows/props/release_fips_wolfengine.props \
windows/props/release_non_fips.props \
windows/props/release_non_fips_test.props \
windows/props/release_non_fips_wolfengine.props \
windows/props/release.props \
windows/props/release_test.props \
windows/props/release_wolfengine.props \
windows/props/static_debug_fips_test.props \
windows/props/static_debug_non_fips_test.props \
windows/props/static_release_fips_test.props \
windows/props/static_release_non_fips_test.props \
windows/props/static_test.props \
windows/props/base.props \
windows/props/base_test.props \
windows/props/base_wolfengine.props \
windows/props/debug_fips.props \
windows/props/debug_fips_test.props \
windows/props/debug_fips_wolfengine.props \
windows/props/debug_non_fips.props \
windows/props/debug_non_fips_test.props \
windows/props/debug_non_fips_wolfengine.props \
windows/props/debug.props \
windows/props/debug_test.props \
windows/props/debug_wolfengine.props \
windows/props/dll_debug_fips_test.props \
windows/props/dll_debug_fips_wolfengine.props \
windows/props/dll_debug_non_fips_test.props \
windows/props/dll_debug_non_fips_wolfengine.props \
windows/props/dll.props \
windows/props/dll_release_fips_test.props \
windows/props/dll_release_fips_wolfengine.props \
windows/props/dll_release_non_fips_test.props \
windows/README.md \
windows/resource.h \
windows/test.vcxproj \
windows/test.vcxproj.filters \
windows/test.vcxproj.user \
windows/wolfEngine.rc \
windows/wolfEngine.sln \
windows/wolfEngine.vcxproj \
windows/wolfEngine.vcxproj.filters \
windows/wolfEngine.vcxproj.user

0 comments on commit 74adbdf

Please sign in to comment.