view src/com/trilead/ssh2/packets/PacketKexDhGexInit.java @ 258:89bad826152b
stable-1.8.6
fix documentation typos
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Mon, 14 Jul 2014 14:36:32 -0700 (2014-07-14) |
parents |
0ce5cc452d02 |
children |
|
line source
package com.trilead.ssh2.packets;
import java.math.BigInteger;
/**
* PacketKexDhGexInit.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: PacketKexDhGexInit.java,v 1.1 2007/10/15 12:49:55 cplattne Exp $
*/
public class PacketKexDhGexInit {
byte[] payload;
BigInteger e;
public PacketKexDhGexInit(BigInteger e) {
this.e = e;
}
public byte[] getPayload() {
if (payload == null) {
TypesWriter tw = new TypesWriter();
tw.writeByte(Packets.SSH_MSG_KEX_DH_GEX_INIT);
tw.writeMPInt(e);
payload = tw.getBytes();
}
return payload;
}
}