You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
583 B
C#

9 months ago
using System;
namespace Renci.SshNet.Security.Cryptography
{
/// <summary>
/// Base class of stream cipher algorithms.
/// </summary>
public abstract class StreamCipher : SymmetricCipher
{
/// <summary>
/// Initializes a new instance of the <see cref="StreamCipher"/> class.
/// </summary>
/// <param name="key">The key.</param>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is <c>null</c>.</exception>
protected StreamCipher(byte[] key)
: base(key)
{
}
}
}