Discuss this help topic in SecureBlackbox Forum
This enumerate defines possible Authenticode signature statement types.
Declaration
[C#]
public enum TSBAuthenticodeStatementType { acsUnknown = 0, acsIndividual = 1, acsCommercial = 2 };
[VB.NET]
Enum TSBAuthenticodeStatementType
acsUnknown = 0
acsIndividual = 1
acsCommercial = 2
End Enum
[Pascal]
TSBAuthenticodeStatementType = (acsUnknown, acsIndividual, acsCommercial);
[C++]
typedef uint8_t TSBAuthenticodeStatementTypeRaw;
typedef enum { acsUnknown = 0, acsIndividual = 1, acsCommercial = 2 } TSBAuthenticodeStatementType;
[PHP]
class TSBAuthenticodeStatementType extends TSBBaseEnum {
const acsUnknown = 0;
const acsIndividual = 1;
const acsCommercial = 2;
}
[Java]
public enum TSBAuthenticodeStatementType { acsUnknown, acsIndividual, acsCommercial }
Possible values
Declared in
.NET:
- Namespace: SBAuthenticode
- Assembly: SecureBlackbox.PKI
VCL:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum