<PackageReference Include="BouncyCastle.Cryptography" Version="2.7.0-beta.98" />

AesUtilities

public static class AesUtilities
using Org.BouncyCastle.Crypto.Engines; namespace Org.BouncyCastle.Crypto { public static class AesUtilities { public static bool IsHardwareAccelerated => false; public static IBlockCipher CreateEngine() { return new AesEngine(); } } }