Renci.SshNet.Common.HostKeyEventArgs
Provides data for the HostKeyReceived event.
namespace Renci.SshNet.Common
{
public class HostKeyEventArgs : EventArgs
{
public bool CanTrust { get; set; }
public byte[] HostKey { get; }
public string HostKeyName { get; }
public byte[] FingerPrint { get; }
public int KeyLength { get; }
public HostKeyEventArgs(KeyHostAlgorithm host);
}
}