Updated .NET Crypto Shredding example to .NET 6, bumped packages to the latest version
Latest- Updated .NET CQRS flow to .NET 6, bumped packages to the latest version
- Moved to file-scoped namespaces.
- Updated obsolete usage of
AesManaged
toAes.Create
. From: https://www.meziantou.net/cryptography-in-dotnet.htm#aes:"AESManaged is fully implemented in .NET, however, the implementation is not FIPS compliant. AESCryptoServiceProvider uses the Windows implementation (CryptoAPI) which is FIPS compliant. Or you can create an instance of the best available provider using AES.Create()."