Enumeration: HashAlgorithm ​
Enum representing different hash algorithms. Currently supports SHA256, SHA512, and MD5.
This enum is used to specify the hash algorithm when generating or verifying hashes. It allows for easy selection of the desired algorithm without needing to remember the exact string values.
Default ​
ts
SHA512
Enumeration Members ​
MD5 ​
ts
MD5: "md5";
SHA1 ​
ts
SHA1: "sha1";
SHA256 ​
ts
SHA256: "sha256";
SHA512 ​
ts
SHA512: "sha512";