HomeSort by relevance Sort by last modified time
    Searched defs:sslSession (Results 1 - 13 of 13) sorted by null

  /external/jetty/src/java/org/eclipse/jetty/server/ssl/
SslCertificates.java 26 import javax.net.ssl.SSLSession;
42 * The name of the SSLSession attribute that will contain any cached information.
46 public static X509Certificate[] getCertChain(SSLSession sslSession)
50 javax.security.cert.X509Certificate javaxCerts[]=sslSession.getPeerCertificateChain();
105 public static void customize(SSLSession sslSession, EndPoint endpoint, Request request) throws IOException
111 String cipherSuite=sslSession.getCipherSuite();
116 CachedInfo cachedInfo=(CachedInfo)sslSession.getValue(CACHED_INFO_ATTR);
126 certs=SslCertificates.getCertChain(sslSession);
    [all...]
SslSelectChannelConnector.java 26 import javax.net.ssl.SSLSession;
110 SSLSession sslSession=sslEngine.getSession();
112 SslCertificates.customize(sslSession,endpoint,request);
618 SSLSession sslSession = sslEngine.getSession();
621 getUseDirectBuffers()?Type.DIRECT:Type.INDIRECT,sslSession.getApplicationBufferSize(),
622 getUseDirectBuffers()?Type.DIRECT:Type.INDIRECT,sslSession.getApplicationBufferSize(),
626 if (getRequestHeaderSize()<sslSession.getApplicationBufferSize())
627 setRequestHeaderSize(sslSession.getApplicationBufferSize())
    [all...]
SslSocketConnector.java 30 import javax.net.ssl.SSLSession;
152 SSLSession sslSession = sslSocket.getSession();
154 SslCertificates.customize(sslSession,endpoint,request);
  /external/apache-http/android/src/android/net/http/
CertificateChainValidator.java 39 import javax.net.ssl.SSLSession;
111 // get a valid SSLSession, close the socket if we fail
112 SSLSession sslSession = sslSocket.getSession();
113 if (!sslSession.isValid()) {
267 SSLSession session = socket.getSession();
  /external/conscrypt/src/main/java/org/conscrypt/
AbstractSessionContext.java 33 import javax.net.ssl.SSLSession;
55 private final Map<ByteArray, SSLSession> sessions
56 = new LinkedHashMap<ByteArray, SSLSession>() {
59 Map.Entry<ByteArray, SSLSession> eldest) {
81 private Iterator<SSLSession> sessionIterator() {
83 SSLSession[] array = sessions.values().toArray(
84 new SSLSession[sessions.size()]);
91 final Iterator<SSLSession> i = sessionIterator();
93 private SSLSession next;
101 SSLSession session = i.next()
    [all...]
OpenSSLSocketImpl.java 43 import javax.net.ssl.SSLSession;
161 private OpenSSLSessionImpl sslSession;
366 sslSession = sslParameters.setupSession(sslSessionNativePointer, sslNativePointer,
473 // If sslSession is null, the handshake was completed during
476 // the SSLSession and session cache or notify
483 // We've returned from startHandshake, which means we've set a sslSession etc.
493 sslSession.resetId();
498 sessionContext.putSession(sslSession);
516 new HandshakeCompletedEvent(this, sslSession);
790 public SSLSession getSession()
    [all...]
OpenSSLEngineImpl.java 32 import javax.net.ssl.SSLSession;
111 private OpenSSLSessionImpl sslSession;
156 sslSession = sslParameters.getSessionToReuse(
287 public SSLSession getSession() {
288 if (sslSession == null) {
291 return sslSession;
430 if (sslSession != null && engineState == EngineState.HANDSHAKE_STARTED) {
433 sslSession = sslParameters.setupSession(sslSessionCtx, sslNativePointer, sslSession,
444 if (sslSession == null && sslSessionCtx != 0)
    [all...]
SSLParametersImpl.java 590 OpenSSLSessionImpl sslSession = null;
593 sslSession = sessionToReuse;
594 sslSession.lastAccessedTime = System.currentTimeMillis();
606 sslSession = new OpenSSLSessionImpl(sslSessionNativePointer, localCertificates,
610 getSessionContext().putSession(sslSession);
613 return sslSession;
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
HostnameVerifierBenchmark.java 29 import javax.net.ssl.SSLSession;
57 public boolean verify(String hostname, SSLSession sslSession) {
59 encodedCertificates = certificatesToBytes(sslSession.getPeerCertificates());
74 FakeSSLSession sslSession = new FakeSSLSession() {
79 hostnameVerifier.verify(hostname, sslSession);
101 private static class FakeSSLSession implements SSLSession {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/m2/repository/org/gebish/geb-core/0.9.3/
geb-core-0.9.3.jar 
  /prebuilts/tools/common/google-api-java-client/1.20.0/
google-api-java-client-min-repackaged-1.20.0.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 267 milliseconds