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

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSessionImpl.java 47 protected long sslSessionNativePointer;
59 protected OpenSSLSessionImpl(long sslSessionNativePointer, X509Certificate[] localCertificates,
62 this.sslSessionNativePointer = sslSessionNativePointer;
87 if (this.sslSessionNativePointer == 0) {
112 id = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
120 return NativeCrypto.i2d_SSL_SESSION(sslSessionNativePointer);
129 creationTime = NativeCrypto.SSL_SESSION_get_time(sslSessionNativePointer);
309 String name = NativeCrypto.SSL_SESSION_cipher(sslSessionNativePointer);
324 protocol = NativeCrypto.SSL_SESSION_get_version(sslSessionNativePointer);
    [all...]
OpenSSLSocketImpl.java 331 sessionToReuse.sslSessionNativePointer);
396 int sslSessionNativePointer;
398 sslSessionNativePointer = NativeCrypto.SSL_do_handshake(sslNativePointer,
405 byte[] sessionId = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
409 NativeCrypto.SSL_SESSION_free(sslSessionNativePointer);
419 this.sslSession = new OpenSSLSessionImpl(sslSessionNativePointer, localCertificates,
    [all...]

Completed in 34 milliseconds