-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from haydenroche5/1_0_0_release
Prepare for 1.0.0 release.
- Loading branch information
Showing
6 changed files
with
73 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |