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

Decrypt() public method

Decrypts the specified input.
public Decrypt ( byte input ) : byte[]
input byte The input.
return byte[]
        public override byte[] Decrypt(byte[] input)
        {
            return Decrypt(input, 0, input.Length);
        }

Same methods

Arc4Cipher::Decrypt ( byte input, int offset, int length ) : byte[]

Usage Example

Beispiel #1
0
 public void DecryptTest()
 {
     byte[] key = null; // TODO: Initialize to an appropriate value
     Arc4Cipher target = new Arc4Cipher(key, true); // TODO: Initialize to an appropriate value
     byte[] input = null; // TODO: Initialize to an appropriate value
     byte[] expected = null; // TODO: Initialize to an appropriate value
     byte[] actual;
     actual = target.Decrypt(input);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
All Usage Examples Of Renci.SshNet.Security.Cryptography.Ciphers.Arc4Cipher::Decrypt