Discuss this help topic in SecureBlackbox Forum

TSBAuthenticodeValidity

Declared in     


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


Defines Authenticode signature validation results.

Declaration

[C#]
    public enum TSBAuthenticodeValidity { acvUnknown = 0, acvValid = 1, acvInvalid = 2, acvCorrupted = 3, acvNoSigner = 4, acvFileChanged = 5 };

[VB.NET]
    Enum TSBAuthenticodeValidity
        acvUnknown = 0
        acvValid = 1
        acvInvalid = 2
        acvCorrupted = 3
        acvNoSigner = 4
        acvFileChanged = 5
    End Enum

[Pascal]
    TSBAuthenticodeValidity = (acvUnknown, acvValid, acvInvalid, acvCorrupted, acvNoSigner, acvFileChanged);

[C++]
    typedef uint8_t TSBAuthenticodeValidityRaw;
    typedef enum { acvUnknown = 0, acvValid = 1, acvInvalid = 2, acvCorrupted = 3, acvNoSigner = 4, acvFileChanged = 5 } TSBAuthenticodeValidity;

[PHP]
    class TSBAuthenticodeValidity extends TSBBaseEnum {
        const acvUnknown = 0;
        const acvValid = 1;
        const acvInvalid = 2;
        const acvCorrupted = 3;
        const acvNoSigner = 4;
        const acvFileChanged = 5;
    }

[Java]
    public enum TSBAuthenticodeValidity { acvUnknown, acvValid, acvInvalid, acvCorrupted, acvNoSigner, acvFileChanged }

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