Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum