Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox.MIME.jar
C++:
Discuss this help topic in SecureBlackbox Forum