using System;
namespace Renci.SshNet.Security.Cryptography
{
///
/// Base class of stream cipher algorithms.
///
public abstract class StreamCipher : SymmetricCipher
{
///
/// Initializes a new instance of the class.
///
/// The key.
/// is null.
protected StreamCipher(byte[] key)
: base(key)
{
}
}
}