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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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++.