Skip to content

Updated .NET Crypto Shredding example to .NET 6, bumped packages to the latest version

Latest
Compare
Choose a tag to compare
@oskardudycz oskardudycz released this 08 Dec 14:34
· 39 commits to main since this release
  • Updated .NET CQRS flow to .NET 6, bumped packages to the latest version
  • Moved to file-scoped namespaces.
  • Updated obsolete usage of AesManaged to Aes.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()."