From ad683124329bc478295b32405d4aafc058e3e329 Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Thu, 11 Dec 2025 13:12:49 -0500 Subject: [PATCH] fix(auth-validator): [PM-22975] Client Version Validator - Added tickt to obsolete remarks --- src/Core/Enums/EncryptionType.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Core/Enums/EncryptionType.cs b/src/Core/Enums/EncryptionType.cs index 02de7c71ac..d910e22e56 100644 --- a/src/Core/Enums/EncryptionType.cs +++ b/src/Core/Enums/EncryptionType.cs @@ -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 }