namespace Bit.Core.Enums
{
public enum CryptoHashAlgorithm : byte
Sha1 = 0,
Sha256 = 1,
Sha512 = 2,
Md5 = 3
}