Fast and secure c # encryption algorithm

I am looking for a fast and secure encryption algorithm with a C # implementation. I need to restore the original message. What could you suggest?

Thank you for your help!

+5
source share
2 answers

If you require asymmetric encryption, use RSA with 2048 bits.

If you can avoid symmetric encryption, use 256-bit AES.

MSDN Link:

System.Security.Cryptography
RSACryptoServiceProvider
AesCryptoServiceProvider

You can read about the difference between the two here: Symmetric or asymmetric.

+8
source

, - , . RijndaelManaged class - , AES, .

, , , . . /​​ (, ). ( , , ). , /​​, - . .NET:

+2

All Articles