Skip to content

Commit 7f2f216

Browse files
Merge pull request #37 from cconlon/v1.4
Prep for 1.4.0 Release
2 parents c28b058 + 0cb31ef commit 7f2f216

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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

164175
Release 1.3.0 of wolfCrypt JNI has bug fixes and new features including:

build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
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/" />
@@ -320,8 +320,8 @@
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}">

src/main/java/com/wolfssl/provider/jce/WolfCryptProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()) {

0 commit comments

Comments
 (0)