HomeSort by relevance Sort by last modified time
    Searched defs:ClientHello (Results 1 - 3 of 3) sorted by null

  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ClientHelloTest.java 27 * Tests for <code>ClientHello</code> constructor and methods
34 * Test for ClientHello(SecureRandom, byte[], byte[], CipherSuite[]),
35 * ClientHello(HandshakeIODataStream, int), getType(), getRandom(), and
43 ClientHello message = new ClientHello(new SecureRandom(), version,
56 ClientHello message_2 = new ClientHello(in, message.length());
65 message_2 = new ClientHello(in, message.length()-1);
72 message_2 = new ClientHello(in, message.length()+ 1);
79 new ClientHello(in, message.length()+ 3); // extra bytes must b
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
ClientHello.java 32 public class ClientHello extends Message {
66 public ClientHello(SecureRandom sr, byte[] version, byte[] ses_id,
88 public ClientHello(HandshakeIODataStream in, int length) throws IOException {
99 "DECODE ERROR: incorrect ClientHello");
114 fatalAlert(AlertProtocol.DECODE_ERROR, "DECODE ERROR: incorrect ClientHello");
128 public ClientHello(HandshakeIODataStream in) throws IOException {
  /external/chromium_org/third_party/tlslite/tlslite/
messages.py 122 class ClientHello(HandshakeMsg):

Completed in 36 milliseconds