Discuss this help topic in SecureBlackbox Forum

TSBDKDigestAlgorithm

Declared in     


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


Defines possible digest algorithms.

Declaration

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

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

[Pascal]
    TSBDKDigestAlgorithm = (dkSHA1, dkSHA256);

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

[PHP]
    class TSBDKDigestAlgorithm extends TSBBaseEnum {
        const dkSHA1 = 0;
        const dkSHA256 = 1;
    }

[Java]
    not available

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