Authenticated Encryption in .NET with AES-GCM

added by DotNetKicks
5/20/2021 5:51:34 PM

1207 Views

When using symmetric encryption, you should be favoring authenticated encryption, such as AES-GCM (Galois/Counter Mode), rather than unauthenticated encryption, such as AES-CBC (Cipher Block Chaining). Authenticated encryption provides you with confidentiality and an additional integrity check, allowing you to defend against various attacks based on the chosen-ciphertext attack.


0 comments