Searched defs:sslSessionNativePointer (Results 1 - 3 of 3) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLSessionImpl.java47 protected long sslSessionNativePointer; field in class:OpenSSLSessionImpl
59 protected OpenSSLSessionImpl(long sslSessionNativePointer, X509Certificate[] localCertificates, argument
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...]
H A DSSLParametersImpl.java377 sessionToReuse.sslSessionNativePointer);
604 OpenSSLSessionImpl setupSession(long sslSessionNativePointer, long sslNativePointer, argument
608 byte[] sessionId = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
612 NativeCrypto.SSL_SESSION_free(sslSessionNativePointer);
623 sslSession = new OpenSSLSessionImpl(sslSessionNativePointer, localCertificates,
H A DNativeCrypto.java1109 public static native void SSL_set_session(long sslNativePointer, long sslSessionNativePointer) argument
1153 * Returns the sslSessionNativePointer of the negotiated session. If this is
1167 * Returns the sslSessionNativePointer of the negotiated session. If this is
1246 public static native byte[] SSL_SESSION_session_id(long sslSessionNativePointer); argument
1248 public static native long SSL_SESSION_get_time(long sslSessionNativePointer); argument
1250 public static native String SSL_SESSION_get_version(long sslSessionNativePointer); argument
1252 public static native String SSL_SESSION_cipher(long sslSessionNativePointer); argument
1254 public static native void SSL_SESSION_free(long sslSessionNativePointer); argument
1256 public static native byte[] i2d_SSL_SESSION(long sslSessionNativePointer); argument

Completed in 85 milliseconds