OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:clientHello
(Results
1 - 3
of
3
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
HandshakeProtocol.java
101
protected
ClientHello
clientHello
;
448
System.arraycopy(
clientHello
.getRandom(), 0, seed, 0, 32);
483
clientHello
= null;
ServerHandshakeImpl.java
79
if (
clientHello
!= null && this.status != FINISHED) {
111
if (
clientHello
!= null && this.status != FINISHED) {
119
clientHello
= new
ClientHello
(io_stream, length);
213
|| preMasterSecret[0] !=
clientHello
.client_version[0]
214
|| preMasterSecret[1] !=
clientHello
.client_version[1]) {
297
clientHello
= new
ClientHello
(io_stream);
323
// check that
clientHello
contains CompressionMethod.null
325
for (int i = 0; i <
clientHello
.compression_methods.length; i++)
[
all
...]
ClientHandshakeImpl.java
76
if (
clientHello
!= null && this.status != FINISHED) {
134
clientHello
= new
ClientHello
(parameters.getSecureRandom(),
136
session.clientRandom =
clientHello
.random;
137
send(
clientHello
);
169
if (
clientHello
!= null
186
if (
clientHello
== null || serverHello != null) {
228
} else if (!Arrays.equals(serverHello.session_id,
clientHello
.session_id)) {
422
ds.update(
clientHello
.getRandom());
441
System.arraycopy(
clientHello
.client_version, 0, preMasterSecret, 0, 2)
[
all
...]
Completed in 34 milliseconds