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:
10
src/Core/Enums/EncryptionType.cs
Normal file
10
src/Core/Enums/EncryptionType.cs
Normal 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
|
||||
}
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum ShareStatusType : byte
|
||||
{
|
||||
Pending = 0,
|
||||
Accepted = 1,
|
||||
Rejected = 2
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user