Discuss this help topic in SecureBlackbox Forum

TSBDKDigestAlgorithm

Declared in     


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


Defines possible digest algorithms.

Declaration

[C#/Java]
    TSBDKDigestAlgorithm = short;
        const short dkSHA1 = 0;
        const short dkSHA256 = 1;

[VB.NET]
    TSBDKDigestAlgorithm As SmallInt
        Const dkSHA1 As SmallInt = 0
        Const dkSHA256 As SmallInt = 1

[Pascal]
    TSBDKDigestAlgorithm = (dkSHA1, dkSHA256);

[C++]
    typedef uint8_t TSBDKDigestAlgorithmRaw;
    typedef enum { dkSHA1 = 0, dkSHA256 = 1 } TSBDKDigestAlgorithm;

Description

Possible values:


Declared in

.NET:
  • Namespace: SBDomainKeys
  • Assembly: SecureBlackbox.MIME
VCL:
  • Unit: SBDomainKeys
Java:
  • Package: SecureBlackbox.MIME.jar
C++:
  • sbdomainkeys.h

Discuss this help topic in SecureBlackbox Forum