Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBDomainKeys
- Assembly: SecureBlackbox.MIME
VCL:Java:
- Package: SecureBlackbox.MIME.jar
C++:
Discuss this help topic in SecureBlackbox Forum