1
0
mirror of https://github.com/bitwarden/server synced 2026-01-07 19:13:50 +00:00

fix(auth-validator): [PM-22975] Client Version Validator - Added tickt to obsolete remarks

This commit is contained in:
Patrick Pimentel
2025-12-11 13:12:49 -05:00
parent 50298fbbce
commit ad68312432

View File

@@ -11,11 +11,11 @@ public enum EncryptionType : byte
XChaCha20Poly1305_B64 = 7,
// asymmetric
[Obsolete("Should probably be removed as it is not known to exist in the real world")]
[Obsolete("PM-29656 - Should probably be removed as it is not known to exist in the real world")]
Rsa2048_OaepSha256_B64 = 3,
Rsa2048_OaepSha1_B64 = 4,
[Obsolete("Should probably be removed as it is not known to exist in the real world")]
[Obsolete("PM-29656 - Should probably be removed as it is not known to exist in the real world")]
Rsa2048_OaepSha256_HmacSha256_B64 = 5,
[Obsolete("Should probably be removed as it is not known to exist in the real world")]
[Obsolete("PM-29656 - Should probably be removed as it is not known to exist in the real world")]
Rsa2048_OaepSha1_HmacSha256_B64 = 6
}