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

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSessionImpl.java 47 protected int sslSessionNativePointer;
59 protected OpenSSLSessionImpl(int 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...]
NativeCrypto.java 581 public static native void SSL_set_session(int sslNativePointer, int sslSessionNativePointer)
613 * Returns the sslSessionNativePointer of the negotiated session
667 public static native byte[] SSL_SESSION_session_id(int sslSessionNativePointer);
669 public static native long SSL_SESSION_get_time(int sslSessionNativePointer);
671 public static native String SSL_SESSION_get_version(int sslSessionNativePointer);
673 public static native String SSL_SESSION_cipher(int sslSessionNativePointer);
675 public static native void SSL_SESSION_free(int sslSessionNativePointer);
677 public static native byte[] i2d_SSL_SESSION(int sslSessionNativePointer);
OpenSSLSocketImpl.java 325 session.sslSessionNativePointer);
376 int sslSessionNativePointer;
378 sslSessionNativePointer = NativeCrypto.SSL_do_handshake(sslNativePointer,
385 byte[] sessionId = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
389 NativeCrypto.SSL_SESSION_free(sslSessionNativePointer);
399 sslSession = new OpenSSLSessionImpl(sslSessionNativePointer, localCertificates,
    [all...]

Completed in 77 milliseconds