Hash

MD5

string Hash.Md5(string input)

THIS IS CONSIDED AN UNSAFE ALGORITHM

Returns the given string hashed using the Md5 algorithm.

Tiger

string Hash.Tiger(string input)

Returns the given string hashed using the Tiger algorithm.

SHA1

string Hash.Sha1(string input)

THIS IS CONSIDED AN UNSAFE ALGORITHM

Returns the given string hashed using the Sha1 algorithm.

SHA224

string Hash.Sha224(string input)

Returns the given string hashed using the Sha-224 algorithm.

SHA256

string Hash.Sha256(string input)

Returns the given string hashed using the Sha-256 algorithm.

SHA384

string Hash.Sha384(string input)

Returns the given string hashed using the Sha-384 algorithm.

SHA512

string Hash.Sha512(string input)

Returns the given string hashed using the Sha-512 algorithm.

SHA3_224

string Hash.Sha3_224(string input)

Returns the given string hashed using the Sha3-224 algorithm. (Sha3 is also known as Keccak).

SHA3_256

string Hash.Sha3_256(string input)

Returns the given string hashed using the Sha3-256 algorithm. (Sha3 is also known as Keccak).

SHA3_384

string Hash.Sha3_384(string input)

Returns the given string hashed using the Sha3-384 algorithm. (Sha3 is also known as Keccak).

SHA3_512

string Hash.Sha3_512(string input)

Returns the given string hashed using the Sha3-512 algorithm. (Sha3 is also known as Keccak).