Skip to content

Commit

Permalink
Release JSS v4.4.7
Browse files Browse the repository at this point in the history
This release features HSM support for PKCS #11 AES KeyWrap/Padding
mechanism. Also in this release are several minor fixes to OCSP handling
in SSLSocket code.

Signed-off-by: Alexander Scheel <[email protected]>
  • Loading branch information
cipherboy committed Aug 5, 2019
1 parent bc44061 commit 520fa01
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion jss.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Summary: Java Security Services (JSS)
URL: http://www.dogtagpki.org/wiki/JSS
License: MPLv1.1 or GPLv2+ or LGPLv2+

Version: 4.4.6
Version: 4.4.7
Release: 1%{?_timestamp}%{?_commit_id}%{?dist}

# To generate the source tarball:
Expand Down
2 changes: 1 addition & 1 deletion org/mozilla/jss/CryptoManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,7 @@ void importCRLNative(byte[] crl, String url, int rl_type)


public static final String
JAR_JSS_VERSION = "JSS_VERSION = JSS_4_4_6_RTM";
JAR_JSS_VERSION = "JSS_VERSION = JSS_4_4_7_RTM";
public static final String
JAR_JDK_VERSION = "JDK_VERSION = N/A";
public static final String
Expand Down
2 changes: 1 addition & 1 deletion org/mozilla/jss/JSSProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public final class JSSProvider extends java.security.Provider {
/* QUESTION: When do we change MINOR and PATCH to 4 and 0? */
private static int JSS_MAJOR_VERSION = 4;
private static int JSS_MINOR_VERSION = 4;
private static int JSS_PATCH_VERSION = 6;
private static int JSS_PATCH_VERSION = 7;
private static double JSS_VERSION = JSS_MAJOR_VERSION +
(JSS_MINOR_VERSION * 100 +
JSS_PATCH_VERSION)/10000.0;
Expand Down
4 changes: 2 additions & 2 deletions org/mozilla/jss/util/jssver.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
/* */
/********************************************************************/

#define JSS_VERSION "4.4.6"
#define JSS_VERSION "4.4.7"
#define JSS_VMAJOR 4
#define JSS_VMINOR 4
#define JSS_VPATCH 6
#define JSS_VPATCH 7
#define JSS_BETA PR_FALSE

#endif

0 comments on commit 520fa01

Please sign in to comment.