Skip to content

Introduction

Endi S. Dewata edited this page Aug 22, 2023 · 3 revisions

Overview

Network Security Services for Java (JSS) is a Java interface to NSS. JSS supports most of the security standards and encryption technologies supported by NSS. JSS also provides a pure Java interface for ASN.1 types and BER/DER encoding.

JSS offers a implementation of Java SSL sockets that uses NSS’s SSL/TLS implementation rather than Sun’s JSSE implementation. You might want to use JSS’s own SSL classes if you want to use some of the capabilities found in NSS’s SSL/TLS library but not found in JSSE.

NSS is the cryptographic module where all cryptographic operations are performed. JSS essentially provides a Java JNI bridge to NSS C shared libraries. When NSS is put in FIPS mode, JSS ensures FIPS compliance by ensuring that all cryptographic operations are performed by the NSS cryptographic module.

JSS offers a JCE provider, JSS Provider.

JSS (jss4.jar) is built with JDK 1.8 when shipped in Fedora and RHEL. Other distributions (such as Debian and Ubuntu) may build with a later JDK but provide compatibility back to JDK 1.8. JSS has been tested through JDK 11; support for JDKs after 9 may still be in their infancy.

JSS is used by Red Hat and Sun products that do crypto in Java. JSS is available under the Mozilla Public License, the GNU General Public License, and the GNU Lesser General Public License. JSS requires NSPR and NSS.

Java provides a JCE provider called SunPKCS11 (see Java PKCS#11 Reference Guide.) SunPKCS11 can be configured to use the NSS module as the crytographic provider. If you are planning to just use JSS JCE provider as a bridge to NSS’s FIPS validated PKCS#11 module, then the SunPKCS11 JCE provider may do all that you need. Note that Java 1.5 claimed no FIPS compliance, and Java 1.6 or higher needs to be used. A current limitation to the configured SunPKCS11-NSS bridge configuration is if you add a PKCS#11 module to the NSS database such as for a smartcard, you won’t be able to access that smartcard through the SunPKCS11-NSS bridge. If you use JSS, you can easily get lists of modules and tokens that are configured in the NSS DB and freely access all of it.

Before you use JSS, you should have a good understanding of the crypto technologies it uses. You might want to read these documents:

For information on downloading NSS releases, see NSS sources building testing.

Read Using JSS to get you started with development after you’ve built and downloaded it.

Information on JSS planning can be found at wiki.mozilla.org, including:

See Also