What class similar to AesCryptoServiceProvider in .NET Core?

0

I'm migrating an application to .net core and I need to use AesCryptoServiceProvider , which worked perfectly in other versions of the .NET Framework.

However, when using Visual Studio .NET, Visual Studio warns that this library does not exist in System.Security

What similar library to use?

    
asked by anonymous 28.07.2017 / 12:46

1 answer

1

See if you can download this Nuget . You do not yet have the .NET Core, but is coming in 2.0 .

You need to see if your project is referencing the package, something like this:

<PackageReference Include=" System.Security " Version="4.2.3-r4" />
    
28.07.2017 / 13:07