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

1 2

  /libcore/crypto/src/main/java/org/conscrypt/
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 69 return Handshake.FINISHED;
CertificateVerify.java 88 return Handshake.CERTIFICATE_VERIFY;
ClientKeyExchange.java 139 return Handshake.CLIENT_KEY_EXCHANGE;
ServerHello.java 134 return Handshake.SERVER_HELLO;
CertificateMessage.java 163 return Handshake.CERTIFICATE;
CertificateRequest.java 138 return Handshake.CERTIFICATE_REQUEST;
  /external/chromium_org/net/socket/
ssl_server_socket.h 27 // Perform the SSL server handshake, and notify the supplied callback
31 virtual int Handshake(const CompletionCallback& callback) = 0;
53 // The caller starts the SSL server handshake by calling Handshake on the
ssl_server_socket_nss.h 34 virtual int Handshake(const CompletionCallback& callback) OVERRIDE;
  /external/chromium_org/third_party/tlslite/tlslite/integration/
TLSSocketServerMixIn.py 12 implement the handshake() method, doing some sort of server
13 handshake on the connection argument. If the handshake method
34 def handshake(self, tlsConnection):
42 print "Handshake failure:", str(error)
52 if self.handshake(tlsConnection) == True:
57 #if the handshake finishes properly and the request is authorized.
58 def handshake(self, tlsConnection): member in class:TLSSocketServerMixIn
  /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();
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTDbg.stg 70 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
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_handshake_hybi00.py 33 """Tests for handshake.hybi00 module."""
40 from mod_pywebsocket.handshake._base import HandshakeException
41 from mod_pywebsocket.handshake import hybi00 as handshake namespace
76 'HTTP/1.1 101 WebSocket Protocol Handshake\r\n'
86 'HTTP/1.1 101 WebSocket Protocol Handshake\r\n'
111 'HTTP/1.1 101 WebSocket Protocol Handshake\r\n'
121 'HTTP/1.1 101 WebSocket Protocol Handshake\r\n'
145 'HTTP/1.1 101 WebSocket Protocol Handshake\r\n'
188 'HTTP/1.1 101 WebSocket Protocol Handshake\r\n
    [all...]

Completed in 399 milliseconds

1 2