Searched defs:suites (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/sun/security/ssl/sanity/ciphersuites/
H A DCheckCipherSuites.java28 * @ignore JSSE supported cipher suites are changed with CR 6916074,
243 private static void showSuites(String[] suites) { argument
244 if ((suites == null) || (suites.length == 0)) {
247 for (int i = 0; i < suites.length; i++) {
248 System.out.println(" " + suites[i]);
H A DCipherSuitesInOrder.java132 // show all of the supported cipher suites
134 "All supported cipher suites");
154 // check the order of default cipher suites of SSLContext
157 "Default cipher suites in SSLContext");
159 // check the order of supported cipher suites of SSLContext
162 "Supported cipher suites in SSLContext");
166 // Check the cipher suites order of SSLEngine
170 // check the order of endabled cipher suites
173 "Enabled cipher suites in SSLEngine");
175 // check the order of supported cipher suites
215 checkSuites(String[] suites, String title) argument
230 showSuites(String[] suites, String title) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DStartTlsResponse.java123 * Overrides the default list of cipher suites enabled for use on the
124 * TLS connection. The cipher suites must have already been listed by
130 * @param suites The non-null list of names of all the cipher suites to
134 public abstract void setEnabledCipherSuites(String[] suites); argument
170 * If cipher suites have been set via <tt>setEnabledCipherSuites</tt>
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ext/
H A DStartTlsResponseImpl.java114 * The list of cipher suites to be enabled.
116 private transient String[] suites = null; field in class:StartTlsResponseImpl
135 * Overrides the default list of cipher suites enabled for use on the
136 * TLS connection. The cipher suites must have already been listed by
142 * @param suites The non-null list of names of all the cipher suites to
146 public void setEnabledCipherSuites(String[] suites) { argument
147 this.suites = suites;
188 * If cipher suites hav
[all...]
/openjdk7/jdk/test/sun/security/ssl/sanity/pluggability/
H A DMySSLEngineImpl.java65 public void setEnabledCipherSuites(String[] suites) {} argument
H A DMySSLSocketFacImpl.java80 public void setEnabledCipherSuites(String suites[]) {} argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLServerSocketImpl.java58 * of your application support "anonymous" cipher suites, you may be
59 * able to configure a server socket to accept those suites.
80 /* what cipher suites to use by default */
161 * Returns the names of the cipher suites which could be enabled for use
163 * be enabled by default, since this list may include cipher suites which
166 * certain kinds of certificates to use certain cipher suites.
175 * Returns the list of cipher suites which are currently enabled
184 * Controls which particular SSL cipher suites are enabled for use
187 * @param suites Names of all the cipher suites t
190 setEnabledCipherSuites(String[] suites) argument
[all...]
H A DSSLEngineImpl.java250 // The cipher suites enabled for use on this connection.
1301 * 2. bulk cipher does not use CBC mode, including null bulk cipher suites.
1960 * Returns the names of the cipher suites which could be enabled for use
1962 * be enabled by default, since this list may include cipher suites which
1965 * certain kinds of certificates to use certain cipher suites.
1974 * Controls which particular cipher suites are enabled for use on
1975 * this connection. The cipher suites must have been listed by
1980 * @param suites Names of all the cipher suites to enable.
1982 synchronized public void setEnabledCipherSuites(String[] suites) { argument
[all...]
H A DSSLSocketImpl.java211 // The cipher suites enabled for use on this connection.
484 CipherSuiteList suites, byte clientAuth,
499 enabledCipherSuites = suites;
699 * configured the cipher suites it wants to use).
858 * 2. bulk cipher does not use CBC mode, including null bulk cipher suites.
2331 * Returns the names of the cipher suites which could be enabled for use
2333 * be enabled by default, since this list may include cipher suites which
2336 * certain kinds of certificates to use certain cipher suites.
2345 * Controls which particular cipher suites are enabled for use on
2346 * this connection. The cipher suites mus
483 SSLSocketImpl(SSLContextImpl context, boolean serverMode, CipherSuiteList suites, byte clientAuth, boolean sessionCreation, ProtocolList protocols, String identificationProtocol, AlgorithmConstraints algorithmConstraints) argument
2353 setEnabledCipherSuites(String[] suites) argument
[all...]

Completed in 47 milliseconds