Discuss this help topic in SecureBlackbox Forum

TElSSLCertificateType

Declared in     


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


Defines certificate types used in SSL.

Declaration

[C#]
    public enum TElSSLCertificateType { ctX509 = 0, ctPGP = 1, ctRawKey = 2 };

[VB.NET]
    Enum TElSSLCertificateType
        ctX509 = 0
        ctPGP = 1
        ctRawKey = 2
    End Enum

[Pascal]
    TElSSLCertificateType = (ctX509, ctPGP);

[C++]
    typedef uint8_t TElSSLCertificateTypeRaw;
    typedef enum { _ctX509 = 0, ctPGP = 1, ctRawKey = 2 } TElSSLCertificateType;

[PHP]
    class TElSSLCertificateType extends TSBBaseEnum {
        const ctX509 = 0;
        const ctPGP = 1;
        const ctRawKey = 2;
    }

[Java]
    public enum TElSSLCertificateType { ctX509, ctPGP, ctRawKey }

Possible values

Declared in

.NET:
  • Namespace: SBSSLConstants
  • Assembly: SecureBlackbox.SSLCommon
VCL:
  • Unit: SBSSLConstants
Java:
  • Package: SecureBlackbox.SSLConstants.jar
C++:
  • sbsslconstants.h

Discuss this help topic in SecureBlackbox Forum