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;
60 protected OpenSSLSessionImpl(int sslSessionNativePointer, X509Certificate[] localCertificates,
63 this.sslSessionNativePointer = sslSessionNativePointer;
88 if (this.sslSessionNativePointer == 0) {
113 id = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
121 return NativeCrypto.i2d_SSL_SESSION(sslSessionNativePointer);
130 creationTime = NativeCrypto.SSL_SESSION_get_time(sslSessionNativePointer);
310 String name = NativeCrypto.SSL_SESSION_cipher(sslSessionNativePointer);
325 protocol = NativeCrypto.SSL_SESSION_get_version(sslSessionNativePointer);
    [all...]
NativeCrypto.java 616 public static native void SSL_set_session(int sslNativePointer, int sslSessionNativePointer)
648 * Returns the sslSessionNativePointer of the negotiated session
702 public static native byte[] SSL_SESSION_session_id(int sslSessionNativePointer);
704 public static native long SSL_SESSION_get_time(int sslSessionNativePointer);
706 public static native String SSL_SESSION_get_version(int sslSessionNativePointer);
708 public static native String SSL_SESSION_cipher(int sslSessionNativePointer);
711 int sslSessionNativePointer);
713 public static native void SSL_SESSION_free(int sslSessionNativePointer);
715 public static native byte[] i2d_SSL_SESSION(int sslSessionNativePointer);
    [all...]
OpenSSLSocketImpl.java 344 session.sslSessionNativePointer);
393 int sslSessionNativePointer;
395 sslSessionNativePointer = NativeCrypto.SSL_do_handshake(sslNativePointer,
402 byte[] sessionId = NativeCrypto.SSL_SESSION_session_id(sslSessionNativePointer);
406 NativeCrypto.SSL_SESSION_free(sslSessionNativePointer);
416 sslSession = new OpenSSLSessionImpl(sslSessionNativePointer, localCertificates,
    [all...]

Completed in 149 milliseconds