mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 13:23:39 +00:00
11 lines
161 B
C#
11 lines
161 B
C#
namespace Bit.Core.Enums
|
|
{
|
|
public enum CryptoHashAlgorithm : byte
|
|
{
|
|
Sha1 = 0,
|
|
Sha256 = 1,
|
|
Sha512 = 2,
|
|
Md5 = 3
|
|
}
|
|
}
|