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 }