Home | History | Annotate | Download | only in jsse

Lines Matching refs:sslNativePointer

63     private int sslNativePointer;
283 this.sslNativePointer = 0;
286 sslNativePointer = NativeCrypto.SSL_new(sslCtxNativePointer);
317 NativeCrypto.setEnabledProtocols(sslNativePointer, enabledProtocols);
318 NativeCrypto.setEnabledCipherSuites(sslNativePointer, enabledCipherSuites);
320 NativeCrypto.setEnabledCompressionMethods(sslNativePointer,
324 NativeCrypto.SSL_clear_options(sslNativePointer, NativeCrypto.SSL_OP_NO_TICKET);
327 NativeCrypto.SSL_set_tlsext_host_name(sslNativePointer, hostname);
332 NativeCrypto.SSL_set_session_creation_enabled(sslNativePointer,
343 NativeCrypto.SSL_set_session(sslNativePointer,
358 NativeCrypto.SSL_set_verify(sslNativePointer,
364 NativeCrypto.SSL_set_verify(sslNativePointer,
382 NativeCrypto.SSL_set_client_CA_list(sslNativePointer, issuersBytes);
395 sslSessionNativePointer = NativeCrypto.SSL_do_handshake(sslNativePointer,
413 = createCertChain(NativeCrypto.SSL_get_certificate(sslNativePointer));
415 = createCertChain(NativeCrypto.SSL_get_peer_cert_chain(sslNativePointer));
495 NativeCrypto.SSL_use_OpenSSL_PrivateKey(sslNativePointer, key.getPkeyContext());
499 NativeCrypto.SSL_use_OpenSSL_PrivateKey(sslNativePointer, key.getPkeyContext());
502 NativeCrypto.SSL_use_PrivateKey(sslNativePointer, privateKeyBytes);
508 NativeCrypto.SSL_use_certificate(sslNativePointer, certificateBytes);
512 NativeCrypto.SSL_check_private_key(sslNativePointer);
675 return NativeCrypto.SSL_read(sslNativePointer, socket.getFileDescriptor$(),
717 NativeCrypto.SSL_write(sslNativePointer, socket.getFileDescriptor$(),
917 NativeCrypto.SSL_interrupt(sslNativePointer);
927 NativeCrypto.SSL_shutdown(sslNativePointer, socket.getFileDescriptor$(),
961 if (sslNativePointer == 0) {
964 NativeCrypto.SSL_free(sslNativePointer);
965 sslNativePointer = 0;
1010 return NativeCrypto.SSL_get_npn_negotiated_protocol(sslNativePointer);