Name

RijndaelManaged

Synopsis

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.

Hierarchy

System.Object SymmetricAlgorithm(System.IDisposable) Rijndael RijndaelManaged

Get Programming .NET Security now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.