Searched refs:ClientHello (Results 1 - 6 of 6) sorted by relevance

/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DClientHelloTest.java27 * Tests for <code>ClientHello</code> constructor and methods
33 * Test for ClientHello(SecureRandom, byte[], byte[], CipherSuite[]),
34 * ClientHello(HandshakeIODataStream, int), getType(), getRandom(), and
42 ClientHello message = new ClientHello(new SecureRandom(), version,
55 ClientHello message_2 = new ClientHello(in, message.length());
64 message_2 = new ClientHello(in, message.length() - 1);
71 message_2 = new ClientHello(in, message.length() + 1);
78 new ClientHello(i
[all...]
H A DServerHandshakeImplTest.java70 ClientHello message = new ClientHello(new SecureRandom(), version,
H A DHandshakeProtocolTest.java109 hs_protocol.clientHello = new ClientHello(
153 hs_protocol.clientHello = new ClientHello(
/external/chromium_org/third_party/tlslite/tlslite/
H A Dtlsconnection.py495 #We'll use this for the ClientHello, and if an error occurs
502 # Send the ClientHello.
610 #Either send ClientHello (with a resumable session)...
618 clientHello = ClientHello()
626 #Or send ClientHello (without)
628 clientHello = ClientHello()
1156 Note that the response is sent independent of the ClientHello
1159 choosing a suitable response based on the ClientHello status_request
1254 # Handle ClientHello and resumption
1265 # Save the ClientHello fo
[all...]
H A Dmessages.py101 class ClientHello(HandshakeMsg): class in inherits:HandshakeMsg
H A Dtlsrecordlayer.py772 "Can only handle SSLv2 ClientHello messages"):
793 yield ClientHello(recordHeader.ssl2).parse(p)
922 #If it's an SSLv2 ClientHello, we can return it as well

Completed in 137 milliseconds