Discuss this help topic in SecureBlackbox Forum

TSBCMSSignatureState

Declared in     


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


Defines possible states of a CMS signature.

Declaration

[C#]
    public enum TSBCMSSignatureState { cssSigned = 0, cssUnsigned = 1 };

[VB.NET]
    Enum TSBCMSSignatureState
        cssSigned = 0
        cssUnsigned = 1
    End Enum

[Pascal]
    TSBCMSSignatureState = (cssSigned, cssUnsigned);

[C++]
    typedef uint8_t TSBCMSSignatureStateRaw;
    typedef enum { cssSigned = 0, cssUnsigned = 1 } TSBCMSSignatureState;

[PHP]
    class TSBCMSSignatureState extends TSBBaseEnum {
        const cssSigned = 0;
        const cssUnsigned = 1;
    }

[Java]
    public enum TSBCMSSignatureState { cssSigned, cssUnsigned }

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