C# Class Brunet.Security.NullEncryption

Provides a Null SymmetricAlgorithm, its blazing fast! Typically, these classes are not thread-safe, but since the block size is 1 and there is no history, it is thread-safe.
Inheritance: System.Security.Cryptography.SymmetricAlgorithm
Show file Open project: pstjuste/brunet Class Usage Examples

Public Methods

Method Description
CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
GenerateIV ( ) : void
GenerateKey ( ) : void
NullEncryption ( ) : System

Method Details

CreateDecryptor() public method

public CreateDecryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
return ICryptoTransform

CreateEncryptor() public method

public CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform
rgbKey byte
rgbIV byte
return ICryptoTransform

GenerateIV() public method

public GenerateIV ( ) : void
return void

GenerateKey() public method

public GenerateKey ( ) : void
return void

NullEncryption() public method

public NullEncryption ( ) : System
return System