Table of Contents

Class KeyExchangeEcdhReplyMessage

Namespace
Renci.SshNet.Messages.Transport
Assembly
Renci.SshNet.dll

Represents SSH_MSG_KEXECDH_REPLY message.

public class KeyExchangeEcdhReplyMessage : Message
Inheritance
KeyExchangeEcdhReplyMessage
Inherited Members

Constructors

KeyExchangeEcdhReplyMessage()

public KeyExchangeEcdhReplyMessage()

Properties

BufferCapacity

Gets the size of the message in bytes.

protected override int BufferCapacity { get; }

Property Value

int

The size of the messages in bytes.

KS

Gets a string encoding an X.509v3 certificate containing the server's ECDSA public host key.

public byte[] KS { get; }

Property Value

byte[]

The host key.

MessageName

public override string MessageName { get; }

Property Value

string

MessageNumber

public override byte MessageNumber { get; }

Property Value

byte

QS

Gets the server's ephemeral contribution to the ECDH exchange, encoded as an octet string.

public byte[] QS { get; }

Property Value

byte[]

Signature

Gets an octet string containing the server's signature of the newly established exchange hash value.

public byte[] Signature { get; }

Property Value

byte[]

The signature.

Methods

LoadData()

Called when type specific data need to be loaded.

protected override void LoadData()

SaveData()

Called when type specific data need to be saved.

protected override void SaveData()