Discuss this help topic in SecureBlackbox Forum

TSBAuthenticodeDigestAlgorithm

Declared in     


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


Defines possible authenticode digest algorithms.

Declaration

[C#/Java]
    TSBAuthenticodeDigestAlgorithm = short;
        const short acMD5 = 0;
        const short acSHA1 = 1;
        const short acSHA224 = 2;
        const short acSHA256 = 3;
        const short acSHA284 = 4;
        const short acSHA512 = 5;

[VB.NET]
    TSBAuthenticodeDigestAlgorithm As SmallInt
        Const acMD5 As SmallInt = 0
        Const acSHA1 As SmallInt = 1
        Const acSHA1 As SmallInt = 2
        Const acSHA1 As SmallInt = 3
        Const acSHA1 As SmallInt = 4
        Const acSHA1 As SmallInt = 5

[Pascal]
    TSBAuthenticodeDigestAlgorithm = (acMD5, acSHA1, acSHA224, acSHA256, acSHA384, acSHA512);

[C++]
    typedef uint8_t TSBAuthenticodeDigestAlgorithmRaw;
    typedef enum { acMD5 = 0, acSHA1 = 1, acSHA224 = 2, acSHA256 = 3, acSHA384 = 4, acSHA512 = 5 } TSBAuthenticodeDigestAlgorithm;

Description

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