aboutsummaryrefslogtreecommitdiffstats
path: root/sshlib/src/main/java/com/trilead/ssh2/packets/PacketKexDHInit.java
blob: 00925163da8fe81774915c125e3ab5013bc839a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.trilead.ssh2.packets;

/**
 * PacketKexDHInit.
 * 
 * @author Christian Plattner, plattner@trilead.com
 * @version $Id: PacketKexDHInit.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
 */
public class PacketKexDHInit
{
	byte[] payload;

	byte[] publicKey;

	public PacketKexDHInit(byte[] publicKey)
	{
		this.publicKey = publicKey;
	}

	public byte[] getPayload()
	{
		if (payload == null)
		{
			TypesWriter tw = new TypesWriter();
			tw.writeByte(Packets.SSH_MSG_KEXDH_INIT);
			tw.writeString(publicKey, 0, publicKey.length);
			payload = tw.getBytes();
		}
		return payload;
	}
}