Renci.SshNet.Security.KeyHostAlgorithm.KeyHostAlgorithm C# (CSharp) Method

KeyHostAlgorithm() public method

Initializes a new instance of the KeyHostAlgorithm class.
public KeyHostAlgorithm ( string name, Key key ) : System.Collections.Generic
name string Host key name.
key Key Host key.
return System.Collections.Generic
        public KeyHostAlgorithm(string name, Key key)
            : base(name)
        {
            Key = key;
        }

Same methods

KeyHostAlgorithm::KeyHostAlgorithm ( string name, Key key, byte data ) : System.Collections.Generic