public sealed class RijndaelManaged : Rijndael { // Public Constructors public RijndaelManaged( ); // Public Instance Methods public override ICryptoTransform CreateDecryptor(byte[ ] rgbKey, byte[ ] rgbIV); // overrides SymmetricAlgorithm public override ICryptoTransform CreateEncryptor(byte[ ] rgbKey, byte[ ] rgbIV); // overrides SymmetricAlgorithm public override void GenerateIV( ); // overrides SymmetricAlgorithm public override void GenerateKey( ); // overrides SymmetricAlgorithm }
This subclass of Rijndael is the default implementation of the Rijndael/AES algorithm. RijndaelManaged is implemented in managed code, rather than acting as a wrapper around the Windows Crypto API.