RijndaelManagedTransform Class
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)] public sealed class RijndaelManagedTransform : ICryptoTransform, IDisposable
/** @attribute ComVisibleAttribute(true) */ public final class RijndaelManagedTransform implements ICryptoTransform, IDisposable
ComVisibleAttribute(true) public final class RijndaelManagedTransform implements ICryptoTransform, IDisposable
Not applicable.
Note: |
|---|
| Using this class is not recommended. A better practice is to use RijndaelManaged with a CryptoStream object. The CryptoStream object handles the padding issues that can occur when using RijndaelManagedTransform directly. For an example, see the RijndaelManaged class. |
Both the CreateEncryptor and CreateDecryptor methods return an instance of the RijndaelManagedTransform class that is initialized with the key information of the current RijndaelManaged object. To encrypt or decrypt data using the Rijndael algorithm, pass the RijndaelManagedTransform object returned by these methods to a CryptoStream object.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Note: