namespace Renci.SshNet.Security { /// /// Represents the abstract base class from which all implementations of algorithms must inherit. /// public abstract class Algorithm { /// /// Gets algorithm name. /// public abstract string Name { get; } } }