Searched refs:SunJSSE (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/ssl/
H A DProvider.java28 import sun.security.ssl.SunJSSE;
31 * Main class for the SunJSSE provider. The actual code was moved to the
32 * class sun.security.ssl.SunJSSE, but for backward compatibility we
35 public final class Provider extends SunJSSE {
56 return SunJSSE.isFIPS();
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DKeyManagerFactoryImpl.java62 if ((ks != null) && SunJSSE.isFIPS()) {
63 if (ks.getProvider() != SunJSSE.cryptoProvider) {
65 + "from provider " + SunJSSE.cryptoProvider.getName());
90 if (SunJSSE.isFIPS() && (ks.getProvider() != SunJSSE.cryptoProvider)) {
92 + "from provider " + SunJSSE.cryptoProvider.getName());
111 if (SunJSSE.isFIPS()) {
H A DSunJSSE.java39 * SunJSSE now supports an experimental FIPS compliant mode when used with an
45 * It is currently not possible to use both FIPS compliant SunJSSE and
51 * Security.removeProvider("SunJSSE") to work, which creates an instance of
54 * data structures need to be initialized or until SunJSSE is initialized in
58 public abstract class SunJSSE extends java.security.Provider { class in inherits:java.security.Provider
94 ("SunJSSE already initialized in non-FIPS mode");
98 ("SunJSSE already initialized with FIPS crypto provider "
105 protected SunJSSE() { method in class:SunJSSE
106 super("SunJSSE", 1.7d, info);
110 ("SunJSSE i
116 protected SunJSSE(java.security.Provider cryptoProvider){ method in class:SunJSSE
121 protected SunJSSE(String cryptoProvider){ method in class:SunJSSE
132 private SunJSSE(java.security.Provider cryptoProvider, method in class:SunJSSE
[all...]
H A DProtocolVersion.java75 private static final boolean FIPS = SunJSSE.isFIPS();
H A DJsseJce.java48 import static sun.security.ssl.SunJSSE.cryptoProvider;
95 if (SunJSSE.isFIPS() == false) {
114 super("SunCertificates", 1.0d, "SunJSSE internal");
247 // the SunJSSE implementation does the actual crypto using
254 return Signature.getInstance(algorithm, "SunJSSE");
H A DSSLContextImpl.java94 if (SunJSSE.isFIPS() &&
95 (sr.getProvider() != SunJSSE.cryptoProvider)) {
98 + SunJSSE.cryptoProvider.getName());
124 if (SunJSSE.isFIPS() &&
127 ("FIPS mode: only SunJSSE TrustManagers may be used");
150 if (SunJSSE.isFIPS()) {
151 // In FIPS mode, require that one of SunJSSE's own keymanagers
161 ("FIPS mode: only SunJSSE KeyManagers may be used");
395 * Considering above interoperability issues, SunJSSE will not set
399 * SSL/TLS clients. In SunJSSE, TL
[all...]
H A DHelloExtensions.java442 fips = SunJSSE.isFIPS();
H A DCipherSuite.java647 final boolean N = (SunJSSE.isFIPS() == false);

Completed in 80 milliseconds