mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Add xchacha20poly1305 enc type
This commit is contained in:
parent
f90bcd44de
commit
02340d31ff
@ -4,9 +4,13 @@
|
|||||||
// EncryptedStringAttribute
|
// EncryptedStringAttribute
|
||||||
public enum EncryptionType : byte
|
public enum EncryptionType : byte
|
||||||
{
|
{
|
||||||
|
// symmetric
|
||||||
AesCbc256_B64 = 0,
|
AesCbc256_B64 = 0,
|
||||||
AesCbc128_HmacSha256_B64 = 1,
|
AesCbc128_HmacSha256_B64 = 1,
|
||||||
AesCbc256_HmacSha256_B64 = 2,
|
AesCbc256_HmacSha256_B64 = 2,
|
||||||
|
XChaCha20Poly1305_B64 = 7,
|
||||||
|
|
||||||
|
// asymmetric
|
||||||
Rsa2048_OaepSha256_B64 = 3,
|
Rsa2048_OaepSha256_B64 = 3,
|
||||||
Rsa2048_OaepSha1_B64 = 4,
|
Rsa2048_OaepSha1_B64 = 4,
|
||||||
Rsa2048_OaepSha256_HmacSha256_B64 = 5,
|
Rsa2048_OaepSha256_HmacSha256_B64 = 5,
|
||||||
|
@ -16,6 +16,7 @@ public class EncryptedStringAttribute : ValidationAttribute
|
|||||||
[EncryptionType.AesCbc256_B64] = 2, // iv|ct
|
[EncryptionType.AesCbc256_B64] = 2, // iv|ct
|
||||||
[EncryptionType.AesCbc128_HmacSha256_B64] = 3, // iv|ct|mac
|
[EncryptionType.AesCbc128_HmacSha256_B64] = 3, // iv|ct|mac
|
||||||
[EncryptionType.AesCbc256_HmacSha256_B64] = 3, // iv|ct|mac
|
[EncryptionType.AesCbc256_HmacSha256_B64] = 3, // iv|ct|mac
|
||||||
|
[EncryptionType.XChaCha20Poly1305_B64] = 1, // cose bytes
|
||||||
[EncryptionType.Rsa2048_OaepSha256_B64] = 1, // rsaCt
|
[EncryptionType.Rsa2048_OaepSha256_B64] = 1, // rsaCt
|
||||||
[EncryptionType.Rsa2048_OaepSha1_B64] = 1, // rsaCt
|
[EncryptionType.Rsa2048_OaepSha1_B64] = 1, // rsaCt
|
||||||
[EncryptionType.Rsa2048_OaepSha256_HmacSha256_B64] = 2, // rsaCt|mac
|
[EncryptionType.Rsa2048_OaepSha256_HmacSha256_B64] = 2, // rsaCt|mac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user