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

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 67 private long sslNativePointer;
273 this.sslNativePointer = 0;
276 sslNativePointer = NativeCrypto.SSL_new(sslCtxNativePointer);
307 NativeCrypto.setEnabledProtocols(sslNativePointer, enabledProtocols);
308 NativeCrypto.setEnabledCipherSuites(sslNativePointer, enabledCipherSuites);
310 NativeCrypto.SSL_clear_options(sslNativePointer, NativeCrypto.SSL_OP_NO_TICKET);
313 NativeCrypto.SSL_set_tlsext_host_name(sslNativePointer, hostname);
318 NativeCrypto.SSL_set_session_creation_enabled(sslNativePointer,
330 NativeCrypto.SSL_set_session(sslNativePointer,
346 NativeCrypto.SSL_set_verify(sslNativePointer,
    [all...]
NativeCrypto.java     [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
NativeCryptoTest.java 659 private final long sslNativePointer;
663 long sslNativePointer,
666 this.sslNativePointer = sslNativePointer;
678 System.out.println("ssl=0x" + Long.toString(sslNativePointer, 16)
695 System.out.println("ssl=0x" + Long.toString(sslNativePointer, 16)
705 hooks.clientCertificateRequested(sslNativePointer);
712 System.out.println("ssl=0x" + Long.toString(sslNativePointer, 16)
    [all...]

Completed in 497 milliseconds