Discuss this help topic in SecureBlackbox Forum
This topic is under development...
Declaration
[C#/Java]
enum TSSL3State { st3Alone = 0, st3ClientHelloSent = 1, st3ServerHelloReceived = 2, st3CertificateReceived = 3, st3ServerKeyExchangeReceived = 4, st3CertificateSent = 5, st3ClientKeyExchangeSent = 6, st3CertificateVerifySent = 7, st3ClientChangeCipherSpecSent = 8, st3FinishedSent = 9, st3ServerChangeCipherSpecReceived = 10, st3ServerFinishedReceived = 11, st3EncryptedDataTransfer = 12, st3ServerHelloDoneReceived = 13, stUnknown = 14 };
[VB.NET]
Enum TSSL3State
st3Alone = 0
st3ClientHelloSent = 1
st3ServerHelloReceived = 2
st3CertificateReceived = 3
st3ServerKeyExchangeReceived = 4
st3CertificateSent = 5
st3ClientKeyExchangeSent = 6
st3CertificateVerifySent = 7
st3ClientChangeCipherSpecSent = 8
st3FinishedSent = 9
st3ServerChangeCipherSpecReceived = 10
st3ServerFinishedReceived = 11
st3EncryptedDataTransfer = 12
st3ServerHelloDoneReceived = 13
stUnknown = 14
End Enum
[Pascal]
TSSL3State = (st3Alone, st3ClientHelloSent, st3ServerHelloReceived, st3CertificateReceived, st3ServerKeyExchangeReceived, st3CertificateSent, st3ClientKeyExchangeSent, st3CertificateVerifySent, st3ClientChangeCipherSpecSent, st3FinishedSent, st3ServerChangeCipherSpecReceived, st3ServerFinishedReceived, st3EncryptedDataTransfer, st3ServerHelloDoneReceived, stUnknown);
[C++]
typedef uint8_t TSSL3StateRaw;
typedef enum {
{
st3Alone = 0,
st3ClientHelloSent = 1,
st3ServerHelloReceived = 2,
st3CertificateReceived = 3,
st3ServerKeyExchangeReceived = 4,
st3CertificateSent = 5,
st3ClientKeyExchangeSent = 6,
st3CertificateVerifySent = 7,
st3ClientChangeCipherSpecSent = 8,
st3FinishedSent = 9,
st3ServerChangeCipherSpecReceived = 10,
st3ServerFinishedReceived = 11,
st3EncryptedDataTransfer = 12,
st3ServerHelloDoneReceived = 13,
stUnknown = 14
} TSSL3State;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSSLClient
- Assembly: SecureBlackbox.SSLClient
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum