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