Renci.SshNet.Security.Cryptography.Ciphers.AesCipher
AES cipher implementation.
namespace Renci.SshNet.Security.Cryptography.Ciphers
{
public sealed class AesCipher : BlockCipher, IDisposable
{
public AesCipher(byte[] key, byte[] iv, AesCipherMode mode, bool pkcs7Padding = false);
public void Dispose(bool disposing);
public void Dispose();
}
}