IPrivateKeySource
Represents private key source interface.
using Renci.SshNet.Security;
using System.Collections.Generic;
namespace Renci.SshNet
{
public interface IPrivateKeySource
{
IReadOnlyCollection<HostAlgorithm> HostKeyAlgorithms { get; }
}
}