bitwarden-mobile/src/Core/Enums/CryptoHashAlgorithm.cs

11 lines
154 B
C#

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