Discuss this help topic in SecureBlackbox Forum

TSBCMSItemType

Declared in     


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


Defines possible types of CMS signature items.

Declaration

[C#]
    public enum TSBCMSItemType { citCertificate = 0, citCRL = 1, citOCSPResponse = 2, citTimestamp = 3 };

[VB.NET]
    Enum TSBCMSItemType
        citCertificate = 0
        citCRL = 1
        citOCSPResponse = 2
        citTimestamp = 3
    End Enum

[Pascal]
    TSBCMSItemType = (citCertificate, citCRL, citOCSPResponse, citTimestamp);

[C++]
    typedef uint8_t TSBCMSItemTypeRaw;
    typedef enum { citCertificate = 0, citCRL = 1, citOCSPResponse = 2, citTimestamp = 3 } TSBCMSItemType;

[PHP]
    class TSBCMSItemType extends TSBBaseEnum {
        const citCertificate = 0;
        const citCRL = 1;
        const citOCSPResponse = 2;
        const citTimestamp = 3;
    }

[Java]
    public enum TSBCMSItemType { citCertificate, citCRL, citOCSPResponse, citTimestamp }

Possible values

Declared in

.NET:
  • Namespace: SBCMS
  • Assembly: SecureBlackbox.PKI
VCL:
  • Unit: SBCMS
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbcms.h

Discuss this help topic in SecureBlackbox Forum