Searched refs:doClientAuth (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLServerSocketImpl.java72 private byte doClientAuth = SSLEngineImpl.clauth_none; field in class:SSLServerSocketImpl
221 doClientAuth = (flag ?
226 return (doClientAuth == SSLEngineImpl.clauth_required);
234 doClientAuth = (flag ?
239 return (doClientAuth == SSLEngineImpl.clauth_requested);
314 enabledCipherSuites, doClientAuth, enableSessionCreation,
H A DServerHandshaker.java60 private byte doClientAuth; field in class:ServerHandshaker
110 doClientAuth = clientAuth;
126 doClientAuth = clientAuth;
135 doClientAuth = clientAuth;
171 if (doClientAuth == SSLEngineImpl.clauth_none) {
480 (doClientAuth == SSLEngineImpl.clauth_required)) {
811 if (doClientAuth != SSLEngineImpl.clauth_none &&
883 if (doClientAuth == SSLEngineImpl.clauth_required) {
1450 if (doClientAuth == SSLEngineImpl.clauth_required) {
1582 (doClientAuth
[all...]
H A DSSLSocketImpl.java196 private byte doClientAuth; field in class:SSLSocketImpl
490 doClientAuth = clientAuth;
1263 enabledProtocols, doClientAuth,
2228 doClientAuth = (flag ?
2234 ((ServerHandshaker) handshaker).setClientAuth(doClientAuth);
2239 return (doClientAuth == SSLEngineImpl.clauth_required);
2251 doClientAuth = (flag ?
2257 ((ServerHandshaker) handshaker).setClientAuth(doClientAuth);
2262 return (doClientAuth == SSLEngineImpl.clauth_requested);
H A DSSLEngineImpl.java244 private byte doClientAuth; field in class:SSLEngineImpl
462 enabledProtocols, doClientAuth,
1849 doClientAuth = (flag ?
1855 ((ServerHandshaker) handshaker).setClientAuth(doClientAuth);
1860 return (doClientAuth == SSLEngineImpl.clauth_required);
1872 doClientAuth = (flag ?
1878 ((ServerHandshaker) handshaker).setClientAuth(doClientAuth);
1883 return (doClientAuth == SSLEngineImpl.clauth_requested);

Completed in 43 milliseconds