简体   繁体   中英

Including a namespace in Visual Studio 2010 C++

I am looking to use the Aes Class from System.Security.Cryptography.

How do I set up the project so that I can create an Aes object?

Here is the reference: http://msdn.microsoft.com/en-us/library/system.security.cryptography.aes.aspx

Thank you

That's a .Net class; you cannot use it in native C++.

Instead, use C# or C++/CLI.

Alternatively, use the native CAPI or CNG (Vista or later) interfaces instead in native C++.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM