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 Summary
Fields Modifier and Type Field Description static byteCERTIFICATEcertificate handshake typestatic byteCERTIFICATE_REQUESTcertificate_request handshake typestatic byteCERTIFICATE_VERIFYcertificate_verify handshake typestatic byteCLIENT_HELLOclient_hello handshake typestatic byteCLIENT_KEY_EXCHANGEclient_key_exchange handshake typestatic byteFINISHEDfinished handshake typestatic byteHELLO_REQUESThello_request handshake typestatic byteSERVER_HELLOserver_hello handshake typestatic byteSERVER_HELLO_DONEserver_hello_done handshake typestatic byteSERVER_KEY_EXCHANGEserver_key_exchange handshake type -
Constructor Summary
Constructors Constructor Description Handshake() -
Method Summary
-
Field Details
-
HELLO_REQUEST
public static final byte HELLO_REQUESThello_request handshake type- See Also:
- Constant Field Values
-
CLIENT_HELLO
public static final byte CLIENT_HELLOclient_hello handshake type- See Also:
- Constant Field Values
-
SERVER_HELLO
public static final byte SERVER_HELLOserver_hello handshake type- See Also:
- Constant Field Values
-
CERTIFICATE
public static final byte CERTIFICATEcertificate handshake type- See Also:
- Constant Field Values
-
SERVER_KEY_EXCHANGE
public static final byte SERVER_KEY_EXCHANGEserver_key_exchange handshake type- See Also:
- Constant Field Values
-
CERTIFICATE_REQUEST
public static final byte CERTIFICATE_REQUESTcertificate_request handshake type- See Also:
- Constant Field Values
-
SERVER_HELLO_DONE
public static final byte SERVER_HELLO_DONEserver_hello_done handshake type- See Also:
- Constant Field Values
-
CERTIFICATE_VERIFY
public static final byte CERTIFICATE_VERIFYcertificate_verify handshake type- See Also:
- Constant Field Values
-
CLIENT_KEY_EXCHANGE
public static final byte CLIENT_KEY_EXCHANGEclient_key_exchange handshake type- See Also:
- Constant Field Values
-
FINISHED
public static final byte FINISHEDfinished handshake type- See Also:
- Constant Field Values
-
-
Constructor Details
-
Handshake
public Handshake()
-