-
Methods in org.conscrypt with parameters of type NativeCrypto.SSLHandshakeCallbacks
| Modifier and Type |
Method |
Description |
static long |
NativeCrypto.SSL_do_handshake(long sslNativePointer,
FileDescriptor fd,
NativeCrypto.SSLHandshakeCallbacks shc,
int timeoutMillis,
boolean client_mode,
byte[] npnProtocols,
byte[] alpnProtocols) |
Returns the sslSessionNativePointer of the negotiated session.
|
static int |
NativeCrypto.SSL_read(long sslNativePointer,
FileDescriptor fd,
NativeCrypto.SSLHandshakeCallbacks shc,
byte[] b,
int off,
int len,
int readTimeoutMillis) |
Reads with the native SSL_read function from the encrypted data stream
|
static void |
NativeCrypto.SSL_shutdown(long sslNativePointer,
FileDescriptor fd,
NativeCrypto.SSLHandshakeCallbacks shc) |
|
static void |
NativeCrypto.SSL_write(long sslNativePointer,
FileDescriptor fd,
NativeCrypto.SSLHandshakeCallbacks shc,
byte[] b,
int off,
int len,
int writeTimeoutMillis) |
Writes with the native SSL_write function to the encrypted data stream.
|