Icon THashType

Unit: WebSrvr

THashType = (htMD5,htSHA1,htSHA256,htSHA512)

Available In: Server Applications

The THashType enumerated type is used to specify the type of hash to compute with the TStream 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