org.pcap4j.packet.Ssh2KexDhInitPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pcap4j-core Show documentation
Show all versions of pcap4j-core Show documentation
The core module of Pcap4J.
/*_##########################################################################
_##
_## Copyright (C) 2014 Pcap4J.org
_##
_##########################################################################
*/
package org.pcap4j.packet;
import java.util.ArrayList;
import java.util.List;
import org.pcap4j.packet.namednumber.Ssh2MessageNumber;
import org.pcap4j.util.ByteArrays;
/**
* @author Kaito Yamada
* @since pcap4j 1.0.1
*/
public final class Ssh2KexDhInitPacket extends AbstractPacket {
/**
*
*/
private static final long serialVersionUID = -2349107611011582180L;
private final Ssh2KexDhInitHeader header;
/**
* A static factory method.
* This method validates the arguments by {@link ByteArrays#validateBounds(byte[], int, int)},
* which may throw exceptions undocumented here.
*
* @param rawData rawData
* @param offset offset
* @param length length
* @return a new Ssh2KexDhInitPacket object.
* @throws IllegalRawDataException if parsing the raw data fails.
*/
public static Ssh2KexDhInitPacket newPacket(
byte[] rawData, int offset, int length
) throws IllegalRawDataException {
ByteArrays.validateBounds(rawData, offset, length);
return new Ssh2KexDhInitPacket(rawData, offset, length);
}
private Ssh2KexDhInitPacket(
byte[] rawData, int offset, int length
) throws IllegalRawDataException {
this.header = new Ssh2KexDhInitHeader(rawData, offset, length);
}
private Ssh2KexDhInitPacket(Builder builder) {
if (
builder == null
|| builder.e == null
) {
StringBuilder sb = new StringBuilder();
sb.append("builder: ").append(builder)
.append(" builder.e: ").append(builder.e);
throw new NullPointerException(sb.toString());
}
this.header = new Ssh2KexDhInitHeader(builder);
}
@Override
public Ssh2KexDhInitHeader getHeader() {
return header;
}
@Override
public Builder getBuilder() {
return new Builder(this);
}
/**
*
* @author Kaito Yamada
* @since pcap4j 1.0.1
*/
public static final class Builder extends AbstractBuilder {
private Ssh2MpInt e;
/**
*
*/
public Builder() {}
private Builder(Ssh2KexDhInitPacket packet) {
this.e = packet.header.e;
}
/**
*
* @param e e
* @return this Builder object for method chaining.
*/
public Builder e(Ssh2MpInt e) {
this.e = e;
return this;
}
@Override
public Ssh2KexDhInitPacket build() {
return new Ssh2KexDhInitPacket(this);
}
}
/**
*
* @author Kaito Yamada
* @version pcap4j 1.0.1
*/
public static final class Ssh2KexDhInitHeader extends AbstractHeader {
/*
* http://tools.ietf.org/html/rfc4253
*
* byte SSH_MSG_KEXDH_INIT
* mpint e
*/
/**
*
*/
private static final long serialVersionUID = 4008432145902117221L;
private final Ssh2MessageNumber messageNumber = Ssh2MessageNumber.SSH_MSG_KEXDH_INIT;
private final Ssh2MpInt e;
private Ssh2KexDhInitHeader(
byte[] rawData, int offset, int length
) throws IllegalRawDataException {
if (length < 5) {
StringBuilder sb = new StringBuilder(80);
sb.append("The data is too short to build an SSH2 KEX DH init header. data: ")
.append(new String(rawData))
.append(", offset: ")
.append(offset)
.append(", length: ")
.append(length);
throw new IllegalRawDataException(sb.toString());
}
if (
!Ssh2MessageNumber.getInstance(rawData[offset])
.equals(Ssh2MessageNumber.SSH_MSG_KEXDH_INIT)
) {
StringBuilder sb = new StringBuilder(120);
sb.append("The data is not an SSH2 KEX DH init message. data: ")
.append(new String(rawData))
.append(", offset: ")
.append(offset)
.append(", length: ")
.append(length);
throw new IllegalRawDataException(sb.toString());
}
this.e = new Ssh2MpInt(rawData, 1 + offset, length - 1);
}
private Ssh2KexDhInitHeader(Builder builder) {
this.e = builder.e;
}
/**
*
* @return messageNumber
*/
public Ssh2MessageNumber getMessageNumber() {
return messageNumber;
}
/**
*
* @return e
*/
public Ssh2MpInt getE() {
return e;
}
@Override
protected List getRawFields() {
List rawFields = new ArrayList();
rawFields.add(new byte[] {messageNumber.value()});
rawFields.add(e.getRawData());
return rawFields;
}
@Override
protected int calcLength() { return e.length() + 1; }
@Override
protected String buildString() {
StringBuilder sb = new StringBuilder();
String ls = System.getProperty("line.separator");
sb.append("[SSH2 KEX DH init Header (")
.append(length())
.append(" bytes)]")
.append(ls);
sb.append(" Message Number: ")
.append(messageNumber)
.append(ls);
sb.append(" e: ")
.append(e)
.append(ls);
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (obj == this) { return true; }
if (!this.getClass().isInstance(obj)) { return false; }
Ssh2KexDhInitHeader other = (Ssh2KexDhInitHeader)obj;
return e.equals(other.e);
}
@Override
protected int calcHashCode() {
int result = 17;
result = 31 * result + e.hashCode();
return result;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy