Link to home
Start Free TrialLog in
Avatar of Aspnet_9
Aspnet_9

asked on

AES algorithm

How will i use AES algorithm in C# to encrypt and decrypt a string
Avatar of Ted Bouskill
Ted Bouskill
Flag of Canada image

Use System.Security.Cryptography.RijndaelManaged  If you want examples, search MSDN
First step - do not try to code it yourself.

This has already been done many times, in many libraries.  If you do not understand the finer points of encryption, salting values, keys etc then you will make mistakes and end up with very easy to crack encryption.

Google it and reuse code that already exists and is published :

https://www.google.com/search?q=c%23+aes+encryption
ASKER CERTIFIED SOLUTION
Avatar of Jaime Olivares
Jaime Olivares
Flag of Peru image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial