StreamCipher.cs 632 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Renci.SshNet.Security.Cryptography
  6. {
  7. /// <summary>
  8. ///
  9. /// </summary>
  10. public abstract class StreamCipher : SymmetricCipher
  11. {
  12. /// <summary>
  13. /// Initializes a new instance of the <see cref="StreamCipher"/> class.
  14. /// </summary>
  15. /// <param name="key">The key.</param>
  16. /// <exception cref="ArgumentNullException"><paramref name="key"/> is null.</exception>
  17. protected StreamCipher(byte[] key)
  18. : base(key)
  19. {
  20. }
  21. }
  22. }