Name

Rijndael

Synopsis

public abstract class Rijndael : SymmetricAlgorithm {
// Public Constructors
   public Rijndael(  );
// Public Static Methods
   public static Rijndael Create(  );
   public static Rijndael Create(string algName);
}

This class extends SymmetricAlgorithm and is the abstract representation of the Rijndael algorithm. Individual implementations of Rijndael will extend this class. The .NET Framework class library includes the Rijndael class, which is the default implementation.

The Rijndael algorithm is also known as the Advanced Encryption Standard (AES).

Hierarchy

System.Object SymmetricAlgorithm(System.IDisposable) Rijndael

Subclasses

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.