File tree Expand file tree Collapse file tree
src/main/java/com/wolfssl/provider/jce Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ files to be on your `JUNIT_HOME` path.
8989
9090To install and set up JUnit:
9191
92- a) Download "junit-4.13.jar" and "hamcrest-all-1.3.jar" from junit.org
92+ a) Download "junit-4.13.2. jar" and "hamcrest-all-1.3.jar" from junit.org
9393
9494b) Place these JAR files on your system and set ` JUNIT_HOME ` to point to
9595 that location:
@@ -159,6 +159,17 @@ that requires JCE provider JAR's to be authenticated. Please see
159159### Revision History
160160---------
161161
162+ #### wolfCrypt JNI Release 1.5.0 (11/14/2022)
163+
164+ Release 1.5.0 of wolfCrypt JNI has bug fixes and new features including:
165+
166+ - Add build compatibility for Java 7 (PR 38)
167+ - Add support for "SHA" algorithm string in wolfJCE (PR 39)
168+ - Add rpm package support (PR 40)
169+ - Add wolfJCE MessageDigest.clone() support (PR 41)
170+ - Improve error checking of native Md5 API calls (PR 41)
171+ - Add unit tests for com.wolfssl.wolfcrypt.Md5 (PR 41)
172+
162173#### wolfCrypt JNI Release 1.4.0 (08/11/2022)
163174
164175Release 1.4.0 of wolfCrypt JNI has bug fixes and new features including:
Original file line number Diff line number Diff line change 1919 <!-- versioning/manifest properties -->
2020 <property name =" implementation.vendor" value =" wolfSSL Inc." />
2121 <property name =" implementation.title" value =" wolfCrypt JNI" />
22- <property name =" implementation.version" value =" 1.4 " />
22+ <property name =" implementation.version" value =" 1.5 " />
2323
2424 <!-- set properties for this build -->
2525 <property name =" src.dir" value =" src/main/java/" />
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public final class WolfCryptProvider extends Provider {
3434 * Create new WolfCryptProvider object
3535 */
3636 public WolfCryptProvider () {
37- super ("wolfJCE" , 1.4 , "wolfCrypt JCE Provider" );
37+ super ("wolfJCE" , 1.5 , "wolfCrypt JCE Provider" );
3838
3939 /* MessageDigest */
4040 if (FeatureDetect .Md5Enabled ()) {
You can’t perform that action at this time.
0 commit comments