IPrivateKeySource public interface IPrivateKeySource Documentation Code using Renci.SshNet.Security; using System.Collections.Generic; namespace Renci.SshNet { public interface IPrivateKeySource { IReadOnlyCollection<HostAlgorithm> HostKeyAlgorithms { get; } } }