Discuss this help topic in SecureBlackbox Forum

TSBAuthenticodeTimestampType

Declared in     


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


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:
  • Unit: SBAuthenticode
Java:
  • Package: SecureBlackbox.PKI.jar
C++:
  • sbauthenticode.h

Discuss this help topic in SecureBlackbox Forum