mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
10 lines
161 B
C#
10 lines
161 B
C#
namespace Bit.Core.Enums
|
|
{
|
|
public enum CryptoHashAlgorithm : byte
|
|
{
|
|
Sha1 = 0,
|
|
Sha256 = 1,
|
|
Sha512 = 2,
|
|
Md5 = 3
|
|
}
|
|
}
|