Discuss this help topic in SecureBlackbox Forum

TElPKCS11CertificateType

Declared in     


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


Defines possible types of certificates.

Declaration

[C#]
    public enum TElPKCS11CertificateType { pctX509 = 0, pctWTLS = 1, pctAttribute = 2, pctVendorDefined = 3 };

[VB.NET]
    Enum TElPKCS11CertificateType
        pctX509 = 0
        pctWTLS = 1
        pctAttribute = 2
        pctVendorDefined = 3
    End Enum

[Pascal]
    TElPKCS11CertificateType = (pctX509, pctWTLS, pctAttribute, pctVendorDefined);

[C++]
    typedef uint8_t TElPKCS11CertificateTypeRaw;
    typedef enum { pctX509 = 0, pctWTLS = 1, pctAttribute = 2, pctVendorDefined = 3 } TElPKCS11CertificateType;

[PHP]
    class TElPKCS11CertificateType extends TSBBaseEnum {
        const pctX509 = 0;
        const pctWTLS = 1;
        const pctAttribute = 2;
        const pctVendorDefined = 3;
    }

[Java]
    public enum TElPKCS11CertificateType { pctX509, pctWTLS, pctAttribute, pctVendorDefined }

Possible values

Declared in

.NET:
VCL:
  • Unit: SBPKCS11Base
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbpkcs11base.h

Discuss this help topic in SecureBlackbox Forum