Package org.conscrypt

Class Handshake

java.lang.Object
org.conscrypt.Handshake

public class Handshake
extends Object
This class incapsulates the constants determining the types of handshake messages as defined in TLS 1.0 spec., 7.4. Handshake protocol. (http://www.ietf.org/rfc/rfc2246.txt)
  • Field Details

    • HELLO_REQUEST

      public static final byte HELLO_REQUEST
      hello_request handshake type
      See Also:
      Constant Field Values
    • CLIENT_HELLO

      public static final byte CLIENT_HELLO
      client_hello handshake type
      See Also:
      Constant Field Values
    • SERVER_HELLO

      public static final byte SERVER_HELLO
      server_hello handshake type
      See Also:
      Constant Field Values
    • CERTIFICATE

      public static final byte CERTIFICATE
      certificate handshake type
      See Also:
      Constant Field Values
    • SERVER_KEY_EXCHANGE

      public static final byte SERVER_KEY_EXCHANGE
      server_key_exchange handshake type
      See Also:
      Constant Field Values
    • CERTIFICATE_REQUEST

      public static final byte CERTIFICATE_REQUEST
      certificate_request handshake type
      See Also:
      Constant Field Values
    • SERVER_HELLO_DONE

      public static final byte SERVER_HELLO_DONE
      server_hello_done handshake type
      See Also:
      Constant Field Values
    • CERTIFICATE_VERIFY

      public static final byte CERTIFICATE_VERIFY
      certificate_verify handshake type
      See Also:
      Constant Field Values
    • CLIENT_KEY_EXCHANGE

      public static final byte CLIENT_KEY_EXCHANGE
      client_key_exchange handshake type
      See Also:
      Constant Field Values
    • FINISHED

      public static final byte FINISHED
      finished handshake type
      See Also:
      Constant Field Values
  • Constructor Details

    • Handshake

      public Handshake()