HomeSort by relevance Sort by last modified time
    Searched full:sslsessionnativepointer (Results 1 - 4 of 4) sorted by null

  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSessionImpl.java 47 protected long sslSessionNativePointer;
59 protected OpenSSLSessionImpl(long sslSessionNativePointer, X509Certificate[] localCertificates,
62 this.sslSessionNativePointer = sslSessionNativePointer;
87 if (this.sslSessionNativePointer == 0) {
113 id = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
121 return NativeCrypto.i2d_SSL_SESSION(sslSessionNativePointer);
131 creationTime = NativeCrypto.SSL_SESSION_get_time(sslSessionNativePointer);
320 String name = NativeCrypto.SSL_SESSION_cipher(sslSessionNativePointer);
336 protocol = NativeCrypto.SSL_SESSION_get_version(sslSessionNativePointer);
    [all...]
SSLParametersImpl.java 377 sessionToReuse.sslSessionNativePointer);
604 OpenSSLSessionImpl setupSession(long sslSessionNativePointer, long sslNativePointer,
608 byte[] sessionId = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
612 NativeCrypto.SSL_SESSION_free(sslSessionNativePointer);
623 sslSession = new OpenSSLSessionImpl(sslSessionNativePointer, localCertificates,
    [all...]
NativeCrypto.java     [all...]
OpenSSLSocketImpl.java 316 long sslSessionNativePointer;
318 sslSessionNativePointer = NativeCrypto.SSL_do_handshake(sslNativePointer,
360 sslSession = sslParameters.setupSession(sslSessionNativePointer, sslNativePointer,
    [all...]

Completed in 89 milliseconds