using Renci.SshNet.Security; namespace Renci.SshNet { /// /// Represents private key source interface. /// public interface IPrivateKeySource { /// /// Gets the host key. /// HostAlgorithm HostKey { get; } } }