1
0
mirror of https://github.com/bitwarden/mobile synced 2026-02-27 18:03:48 +00:00

crypto function service

This commit is contained in:
Kyle Spearrin
2019-03-28 15:43:50 -04:00
parent fca1dbd6ec
commit cb9dddc7a7
11 changed files with 296 additions and 10 deletions

View File

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