Discuss this help topic in SecureBlackbox Forum

TSSL3State

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This topic is under development...

Declaration

[C#]
    public 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;

[PHP]
    class TSSL3State extends TSBBaseEnum {
        const st3Alone = 0;
        const st3ClientHelloSent = 1;
        const st3ServerHelloReceived = 2;
        const st3CertificateReceived = 3;
        const st3ServerKeyExchangeReceived = 4;
        const st3CertificateSent = 5;
        const st3ClientKeyExchangeSent = 6;
        const st3CertificateVerifySent = 7;
        const st3ClientChangeCipherSpecSent = 8;
        const st3FinishedSent = 9;
        const st3ServerChangeCipherSpecReceived = 10;
        const st3ServerFinishedReceived = 11;
        const st3EncryptedDataTransfer = 12;
        const st3ServerHelloDoneReceived = 13;
        const stUnknown = 14;
    }

[Java]
    public enum TSSL3State { st3Alone, st3ClientHelloSent, st3ServerHelloReceived, st3CertificateReceived, st3ServerKeyExchangeReceived, st3CertificateSent, st3ClientKeyExchangeSent, st3CertificateVerifySent, st3ClientChangeCipherSpecSent, st3FinishedSent, st3ServerChangeCipherSpecReceived, st3ServerFinishedReceived, st3EncryptedDataTransfer, st3ServerHelloDoneReceived, stUnknown }

Possible values

Declared in

.NET:
  • Namespace: SBSSLClient
  • Assembly: SecureBlackbox.SSLClient
VCL:
  • Unit: SBSSLClient
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbsslclient.h

Discuss this help topic in SecureBlackbox Forum