Renci.SshNet.Security.Cryptography.Ciphers.DesCipher.DesCipher C# (CSharp) Method

DesCipher() public method

Initializes a new instance of the DesCipher class.
is null.
public DesCipher ( byte key, CipherMode mode, CipherPadding padding ) : System
key byte The key.
mode CipherMode The mode.
padding CipherPadding The padding.
return System
        public DesCipher(byte[] key, CipherMode mode, CipherPadding padding)
            : base(key, 8, mode, padding)
        {
        }