C# Class Internal.Cryptography.DesImplementation

Inheritance: System.Security.Cryptography.DES
Show file Open project: dotnet/corefx

Public Methods

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

Private Methods

Method Description
CreateTransform ( byte rgbKey, byte rgbIV, bool encrypting ) : ICryptoTransform
CreateTransformCore ( CipherMode cipherMode, PaddingMode paddingMode, byte key, byte iv, int blockSize, bool encrypting ) : ICryptoTransform

Method Details

CreateDecryptor() public method

public CreateDecryptor ( ) : ICryptoTransform
return ICryptoTransform

CreateDecryptor() public method

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

CreateEncryptor() public method

public CreateEncryptor ( ) : ICryptoTransform
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 final method

public final GenerateKey ( ) : void
return void