Mercurial > 510Connectbot
view app/src/main/java/ch/ethz/ssh2/packets/PacketKexDhGexRequest.java @ 457:105815cce146 stable-1.9.3-3
minimum version android 5, target and compile version api 28
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 29 Jan 2019 11:21:57 -0800 |
parents | d29cce60f393 |
children |
line wrap: on
line source
/* * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. * Please refer to the LICENSE.txt for licensing details. */ package ch.ethz.ssh2.packets; import ch.ethz.ssh2.DHGexParameters; /** * @author Christian Plattner * @version $Id: PacketKexDhGexRequest.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $ */ public final class PacketKexDhGexRequest { private final byte[] payload; public PacketKexDhGexRequest(DHGexParameters para) { TypesWriter tw = new TypesWriter(); tw.writeByte(Packets.SSH_MSG_KEX_DH_GEX_REQUEST); tw.writeUINT32(para.getMin_group_len()); tw.writeUINT32(para.getPref_group_len()); tw.writeUINT32(para.getMax_group_len()); payload = tw.getBytes(); } public byte[] getPayload() { return payload; } }