Renci.SshNet.Security.Cryptography.SymmetricCipher
Base class for symmetric cipher implementations.
namespace Renci.SshNet.Security.Cryptography
{
public abstract class SymmetricCipher : Cipher
{
protected byte[] Key { get; }
protected SymmetricCipher(byte[] key);
}
}