开发者

Including a namespace in Visual Studio 2010 C++

开发者 https://www.devze.com 2023-03-05 19:03 出处:网络
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?

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.a开发者_如何学Cspx

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++.

0

精彩评论

暂无评论...
验证码 换一张
取 消