Package com.sshtools.j2ssh.transport.kex
Class SshMsgKexDhReply
- java.lang.Object
-
- com.sshtools.j2ssh.transport.SshMessage
-
- com.sshtools.j2ssh.transport.kex.SshMsgKexDhReply
-
public class SshMsgKexDhReply extends SshMessage
- Version:
- $Revision: 1.17 $
- Author:
- $author$
-
-
Field Summary
Fields Modifier and Type Field Description protected static int
SSH_MSG_KEXDH_REPLY
-
Constructor Summary
Constructors Constructor Description SshMsgKexDhReply()
Creates a new SshMsgKexDhReply object.SshMsgKexDhReply(byte[] hostKey, java.math.BigInteger f, byte[] signature)
Creates a new SshMsgKexDhReply object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
constructByteArray(ByteArrayWriter baw)
Message implementations should implement this method, writing the data as exected in the transport protocol message format.protected void
constructMessage(ByteArrayReader bar)
Message implementation should implement this method, reading the data as expected in the transport protocol message format.java.math.BigInteger
getF()
byte[]
getHostKey()
java.lang.String
getMessageName()
Returns the name of the message implementation for debugging purposes.byte[]
getSignature()
-
Methods inherited from class com.sshtools.j2ssh.transport.SshMessage
fromByteArray, getMessageId, getMessageId, toByteArray
-
-
-
-
Field Detail
-
SSH_MSG_KEXDH_REPLY
protected static final int SSH_MSG_KEXDH_REPLY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getF
public java.math.BigInteger getF()
- Returns:
-
getHostKey
public byte[] getHostKey()
- Returns:
-
getMessageName
public java.lang.String getMessageName()
Description copied from class:SshMessage
Returns the name of the message implementation for debugging purposes.
- Specified by:
getMessageName
in classSshMessage
- Returns:
-
getSignature
public byte[] getSignature()
- Returns:
-
constructByteArray
protected void constructByteArray(ByteArrayWriter baw) throws InvalidMessageException
Description copied from class:SshMessage
Message implementations should implement this method, writing the data as exected in the transport protocol message format.
- Specified by:
constructByteArray
in classSshMessage
- Parameters:
baw
-- Throws:
InvalidMessageException
-
constructMessage
protected void constructMessage(ByteArrayReader bar) throws InvalidMessageException
Description copied from class:SshMessage
Message implementation should implement this method, reading the data as expected in the transport protocol message format.
- Specified by:
constructMessage
in classSshMessage
- Parameters:
bar
-- Throws:
InvalidMessageException
-
-