HomeSort by relevance Sort by last modified time
    Searched refs:Handshake (Results 1 - 25 of 32) sorted by null

1 2

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
Handshake.java 22 * This class incapsulates the constants determining the types of handshake
23 * messages as defined in TLS 1.0 spec., 7.4. Handshake protocol.
27 public class Handshake {
31 * hello_request handshake type
37 * client_hello handshake type
43 * server_hello handshake type
49 * certificate handshake type
55 * server_key_exchange handshake type
61 * certificate_request handshake type
67 * server_hello_done handshake typ
    [all...]
HelloRequest.java 70 return Handshake.HELLO_REQUEST;
ServerHelloDone.java 74 return Handshake.SERVER_HELLO_DONE;
Finished.java 70 return Handshake.FINISHED;
CertificateVerify.java 90 return Handshake.CERTIFICATE_VERIFY;
ClientKeyExchange.java 140 return Handshake.CLIENT_KEY_EXCHANGE;
ServerHello.java 134 return Handshake.SERVER_HELLO;
CertificateMessage.java 166 return Handshake.CERTIFICATE;
CertificateRequest.java 140 return Handshake.CERTIFICATE_REQUEST;
ClientHello.java 206 return Handshake.CLIENT_HELLO;
ServerKeyExchange.java 188 return Handshake.SERVER_KEY_EXCHANGE;
  /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
FinishedTest.java 24 import org.apache.harmony.xnet.provider.jsse.Handshake;
38 assertEquals("incorrect type", Handshake.FINISHED, message.getType());
HelloRequestTest.java 21 import org.apache.harmony.xnet.provider.jsse.Handshake;
35 assertEquals("incorrect type", Handshake.HELLO_REQUEST, message
ServerHelloDoneTest.java 23 import org.apache.harmony.xnet.provider.jsse.Handshake;
41 assertEquals("incorrect type", Handshake.SERVER_HELLO_DONE, message
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTDbg.stg 66 proxy.Handshake();
Dbg.stg 158 proxy.Handshake();
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTDbg.stg 70 proxy.Handshake();
Dbg.stg 157 proxy.Handshake();
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ClientKeyExchangeTest.java 44 assertEquals("incorrect type", Handshake.CLIENT_KEY_EXCHANGE,
104 assertEquals("incorrect type", Handshake.CLIENT_KEY_EXCHANGE,
150 assertEquals("incorrect type", Handshake.CLIENT_KEY_EXCHANGE, message
CertificateMessageTest.java 62 assertEquals("incorrect type", Handshake.CERTIFICATE, message.getType());
91 assertEquals("incorrect type", Handshake.CERTIFICATE, message.getType());
CertificateVerifyTest.java 54 assertEquals("incorrect type", Handshake.CERTIFICATE_VERIFY,
ClientHelloTest.java 45 assertEquals("incorrect type", Handshake.CLIENT_HELLO, message.getType());
CertificateRequestTest.java 69 assertEquals("incorrect type", Handshake.CERTIFICATE_REQUEST, message
ServerHelloTest.java 38 assertEquals("incorrect type", Handshake.SERVER_HELLO, message
ServerKeyExchangeTest.java 41 assertEquals("incorrect type", Handshake.SERVER_KEY_EXCHANGE, message
95 assertEquals("incorrect type", Handshake.SERVER_KEY_EXCHANGE, message
145 assertEquals("incorrect type", Handshake.SERVER_KEY_EXCHANGE, message

Completed in 244 milliseconds

1 2