view src/com/trilead/ssh2/packets/PacketKexDhGexInit.java @ 309:cb179051f0f2
ganymed
add ecdsa key support everywhere
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Wed, 30 Jul 2014 14:29:39 -0700 (2014-07-30) |
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;
}
}