mirror of https://gitee.com/apiumc/Gateway.git
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.
22 lines
595 B
C#
22 lines
595 B
C#
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; }
|
|
}
|
|
}
|