OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sslSessionNativePointer
(Results
1 - 2
of
2
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
OpenSSLSessionImpl.java
47
protected long
sslSessionNativePointer
;
59
protected OpenSSLSessionImpl(long
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
);
308
String name = NativeCrypto.SSL_SESSION_cipher(
sslSessionNativePointer
);
323
protocol = NativeCrypto.SSL_SESSION_get_version(
sslSessionNativePointer
);
[
all
...]
OpenSSLSocketImpl.java
336
sessionToReuse.
sslSessionNativePointer
);
403
int
sslSessionNativePointer
;
405
sslSessionNativePointer
= NativeCrypto.SSL_do_handshake(sslNativePointer,
413
byte[] sessionId = NativeCrypto.SSL_SESSION_session_id(
sslSessionNativePointer
);
417
NativeCrypto.SSL_SESSION_free(
sslSessionNativePointer
);
427
this.sslSession = new OpenSSLSessionImpl(
sslSessionNativePointer
, localCertificates,
[
all
...]
Completed in 26 milliseconds