1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00
bitwarden-mobile/src/Core/Enums/CryptoHashAlgorithm.cs
2019-04-03 14:21:54 -04:00

11 lines
161 B
C#

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