using System; namespace Renci.SshNet.Security { /// /// Implements certificate support for host algorithm. /// public class CertificateHostAlgorithm : HostAlgorithm { /// /// Gets the host key data. /// public override byte[] Data { get { throw new NotImplementedException(); } } /// /// Initializes a new instance of the class. /// /// The host key name. public CertificateHostAlgorithm(string name) : base(name) { } /// /// Signs the specified data. /// /// The data. /// Signed data. /// public override byte[] Sign(byte[] data) { throw new NotImplementedException(); } /// /// Verifies the signature. /// /// The data. /// The signature. /// true if signature was successfully verified; otherwise false. /// public override bool VerifySignature(byte[] data, byte[] signature) { throw new NotImplementedException(); } } }