You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Gateway/SshNet/IPrivateKeySource.cs

22 lines
595 B
C#

10 months ago
using System.Collections.Generic;
using UMC.SshNet.Security;
namespace UMC.SshNet
{
/// <summary>
/// Represents private key source interface.
/// </summary>
public interface IPrivateKeySource
{
/// <summary>
/// Gets the host keys algorithms.
/// </summary>
/// <remarks>
/// In situations where there is a preferred order of usage of the host algorithms,
/// the collection should be ordered from most preferred to least.
/// </remarks>
IReadOnlyCollection<HostAlgorithm> HostKeyAlgorithms { get; }
}
}