Renci.SshNet.Security.CertificateHostAlgorithm
Implements certificate support for host algorithm.
namespace Renci.SshNet.Security
{
public class CertificateHostAlgorithm : KeyHostAlgorithm
{
public Certificate Certificate { get; }
public CertificateHostAlgorithm(string name, Key privateKey, Certificate certificate);
public CertificateHostAlgorithm(string name, Key privateKey, Certificate certificate, DigitalSignature digitalSignature);
public CertificateHostAlgorithm(string name, Certificate certificate, IReadOnlyDictionary<string, Func<byte[], KeyHostAlgorithm>> keyAlgorithms);
public CertificateHostAlgorithm(string name, Certificate certificate, DigitalSignature digitalSignature, IReadOnlyDictionary<string, Func<byte[], KeyHostAlgorithm>> keyAlgorithms);
}
}