You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These modes are vulnerable to attacks and may cause exposure of sensitive information. For example, using ECB to encrypt a plaintext block always produces a same cipher text, so it can easily tell if two encrypted messages are identical. Using approved modes can avoid these unnecessary risks.
The text was updated successfully, but these errors were encountered:
Applies to src/Microsoft.IdentityModel.Tokens/Encryption/SymmetricKeyWrapProvider.cs
Violation - Use of one of the following unsafe encryption modes that is not approved:
System.Security.Cryptography.CipherMode.ECB
System.Security.Cryptography.CipherMode.OFB
System.Security.Cryptography.CipherMode.CFB
These modes are vulnerable to attacks and may cause exposure of sensitive information. For example, using ECB to encrypt a plaintext block always produces a same cipher text, so it can easily tell if two encrypted messages are identical. Using approved modes can avoid these unnecessary risks.
The text was updated successfully, but these errors were encountered: