Discuss this help topic in SecureBlackbox Forum
Defines possible Authenticode timestamp types.
Declaration
[C#]
public enum TSBAuthenticodeTimestampType { actLegacy = 0, actTrusted = 1 };
[VB.NET]
Enum TSBAuthenticodeTimestampType
actLegacy = 0
actTrusted = 1
End Enum
[Pascal]
TSBAuthenticodeTimestampType = (actLegacy, actTrusted);
[C++]
typedef uint8_t TSBAuthenticodeTimestampTypeRaw;
typedef enum { actLegacy = 0, actTrusted = 1 } TSBAuthenticodeTimestampType;
[PHP]
class TSBAuthenticodeTimestampType extends TSBBaseEnum {
const actLegacy = 0;
const actTrusted = 1;
}
[Java]
public enum TSBAuthenticodeTimestampType { actLegacy, actTrusted }
Possible values
Declared in
.NET:
- Namespace: SBAuthenticode
- Assembly: SecureBlackbox.PKI
VCL:Java:
- Package: SecureBlackbox.PKI.jar
C++:
Discuss this help topic in SecureBlackbox Forum