1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

encryption type header checking

This commit is contained in:
Kyle Spearrin
2017-04-06 22:55:36 -04:00
parent 2d7cb1321b
commit 02d8913a77
3 changed files with 60 additions and 18 deletions

View File

@ -0,0 +1,10 @@
namespace Bit.Core.Enums
{
public enum EncryptionType : byte
{
AesCbc256_B64 = 0,
AesCbc128_HmacSha256_B64 = 1,
AesCbc256_HmacSha256_B64 = 2,
RsaOaep_Sha256_B64 = 3
}
}

View File

@ -1,9 +0,0 @@
namespace Bit.Core.Enums
{
public enum ShareStatusType : byte
{
Pending = 0,
Accepted = 1,
Rejected = 2
}
}