Algorithm.cs 362 B

12345678910111213
  1. namespace Renci.SshNet.Security
  2. {
  3. /// <summary>
  4. /// Represents the abstract base class from which all implementations of algorithms must inherit.
  5. /// </summary>
  6. public abstract class Algorithm
  7. {
  8. /// <summary>
  9. /// Gets algorithm name.
  10. /// </summary>
  11. public abstract string Name { get; }
  12. }
  13. }