C# Class ICSharpCode.SharpZipLib.Encryption.RijndaelImplementation

Internal implementation of Rijndael. This class is returned from Rijndael.Create() instead of the public RijndaelManaged to be consistent with the rest of the static Create() methods which return opaque types. They both have have the same implementation.
Inheritance: Rijndael2
Afficher le fichier Open project: fanfeilong/exceltk Class Usage Examples

Méthodes publiques

Méthode Description
CreateDecryptor ( ) : ICryptoTransform
CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
CreateEncryptor ( ) : ICryptoTransform
CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
GenerateIV ( ) : void
GenerateKey ( ) : void

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Private Methods

Méthode Description
RijndaelImplementation ( ) : System

Method Details

CreateDecryptor() public méthode

public CreateDecryptor ( ) : ICryptoTransform
Résultat ICryptoTransform

CreateDecryptor() public méthode

public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
Résultat ICryptoTransform

CreateEncryptor() public méthode

public CreateEncryptor ( ) : ICryptoTransform
Résultat ICryptoTransform

CreateEncryptor() public méthode

public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
Résultat ICryptoTransform

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

GenerateIV() public méthode

public GenerateIV ( ) : void
Résultat void

GenerateKey() public méthode

public GenerateKey ( ) : void
Résultat void