Mercurial > 510Connectbot
view src/com/trilead/ssh2/packets/PacketKexDHInit.java @ 265:cf81ae79931d
menu force-size does not need a session, just an active terminal
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 16 Jul 2014 12:12:20 -0700 |
parents | 0ce5cc452d02 |
children |
line wrap: on
line source
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; } }