C# (CSharp) Encryption Пространство имен

Классы

Имя Описание
AES Encrypts data using teh 256-bit AES cipher (aka Rijndael). This cipher algorithm provides both portability and strong security of the encrypted data, provided the password is not stored on the same machine as the encryption key.
EncryptionUtils Provides a friendly wrapper around the RijndaelSimple class
WindowsProtectedData Encrypts data using Windows ProtectedData functionality. This does not require an encryption key, since the encryption/decryption is performed by Windows, and hence is a black-box. The downside of this approach is that the encrypted data can only be decrypted on the same physical server.