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

/libcore/luni/src/main/java/javax/net/ssl/
H A DSSLSessionContext.java36 * @param sessionId
42 public SSLSession getSession(byte[] sessionId); argument
/libcore/crypto/src/main/java/org/conscrypt/
H A DServerSessionContext.java55 public SSLSession getSession(byte[] sessionId) { argument
56 SSLSession session = super.getSession(sessionId);
63 byte[] data = persistentCache.getSessionData(sessionId);
H A DAbstractSessionContext.java261 public SSLSession getSession(byte[] sessionId) { argument
262 if (sessionId == null) {
263 throw new NullPointerException("sessionId == null");
265 ByteArray key = new ByteArray(sessionId);
H A DOpenSSLSocketImpl.java413 byte[] sessionId = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
414 if (sessionToReuse != null && Arrays.equals(sessionToReuse.getId(), sessionId)) {

Completed in 293 milliseconds