Icon TEWBHashType

Unit: ewbhttpmodule

TEWBHashType = (htMD5,htSHA1,htSHA256,htSHA512)

This type is used to represent the type of hash being computed with the TEWBWebServerRequest ComputeHash method.

ElementDescription
htMD5Specifies that the computed hash will be a 128-bit MD-5 (Message Digest) hash.

Warning MD-5 hashes are cryptographic hashes, but are not secure and should only be used for purposes such as computing checksums for data.
htSHA1Specifies that the computed hash will be a 160-bit SHA-1 (Secure Hash Algorithm) hash.

Warning SHA-1 hashes are cryptographic hashes, but are not secure and should only be used for purposes such as computing checksums for data.
htSHA256Specifies that the computed hash will be a 256-bit SHA-2 (Secure Hash Algorithm) hash.
htSHA512Specifies that the computed hash will be a 512-bit SHA-2 (Secure Hash Algorithm) hash.
Image