File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
src/main/java/com/wolfssl/provider/jce Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -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.4.0 (08/11/2022)
163+
164+ Release 1.4.0 of wolfCrypt JNI has bug fixes and new features including:
165+
166+ - Add example directory with one simple ProviderTest example (PR 32)
167+ - Fix double free of ChaCha pointer (PR 34)
168+ - Add test cases for ChaCha.java (PR 34)
169+ - Skip WolfCryptMacTest for HMAC-MD5 when using wolfCrypt FIPS 140-3 (PR 35)
170+ - Use new hash struct names (wc\_ Md5/wc\_ Sha/etc) in native code (PR 35)
171+ - Fix potential build error with non-ASCII apostrophes in Fips.java (PR 36)
172+
162173#### wolfCrypt JNI Release 1.3.0 (05/13/2022)
163174
164175Release 1.3.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.3 " />
22+ <property name =" implementation.version" value =" 1.4 " />
2323
2424 <!-- set properties for this build -->
2525 <property name =" src.dir" value =" src/main/java/" />
320320
321321 <sysproperty key =" sun.boot.library.path" value =" $JAVA_HOME/bin:${ lib.dir } " />
322322 <sysproperty key =" wolfjce.debug" value =" ${ jce.debug } " />
323- <env key =" LD_LIBRARY_PATH" path =" $LD_LIBRARY_PATH:{lib.dir}:/usr/local/lib" />
324- <env key =" CLASSPATH" path =" $LD_LIBRARY_PATH:${ env.JUNIT_HOME } /${ junit4 } " />
323+ <env key =" LD_LIBRARY_PATH" path =" ${ env. LD_LIBRARY_PATH} :{lib.dir}:/usr/local/lib" />
324+ <env key =" CLASSPATH" path =" ${ env. LD_LIBRARY_PATH} :${ env.JUNIT_HOME } /${ junit4 } " />
325325
326326 <batchtest fork =" yes" todir =" ${ reports.dir } " >
327327 <fileset dir =" ${ test.dir } " >
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.3 , "wolfCrypt JCE Provider" );
37+ super ("wolfJCE" , 1.4 , "wolfCrypt JCE Provider" );
3838
3939 /* MessageDigest */
4040 if (FeatureDetect .Md5Enabled ()) {
You can’t perform that action at this time.
0 commit comments