June 2003
Intermediate to advanced
714 pages
22h 8m
English
RijndaelManaged
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.
System.Object
→
SymmetricAlgorithm(System.IDisposable)
→
Rijndael
→
RijndaelManaged