Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/packets/PacketNewKeys.java @ 273:91a31873c42a ganymed
start conversion from trilead to ganymed
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 18 Jul 2014 11:21:46 -0700 |
parents | |
children | 071eccdff8ea |
comparison
equal
deleted
inserted
replaced
272:ce2f4e397703 | 273:91a31873c42a |
---|---|
1 /* | |
2 * Copyright (c) 2006-2011 Christian Plattner. All rights reserved. | |
3 * Please refer to the LICENSE.txt for licensing details. | |
4 */ | |
5 package ch.ethz.ssh2.packets; | |
6 | |
7 import java.io.IOException; | |
8 | |
9 import ch.ethz.ssh2.PacketFormatException; | |
10 import ch.ethz.ssh2.PacketTypeException; | |
11 | |
12 /** | |
13 * @author Christian Plattner | |
14 * @version $Id: PacketNewKeys.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $ | |
15 */ | |
16 public final class PacketNewKeys { | |
17 private final byte[] payload; | |
18 | |
19 public PacketNewKeys() { | |
20 TypesWriter tw = new TypesWriter(); | |
21 tw.writeByte(Packets.SSH_MSG_NEWKEYS); | |
22 payload = tw.getBytes(); | |
23 } | |
24 | |
25 public PacketNewKeys(byte payload[]) throws IOException { | |
26 this.payload = payload; | |
27 | |
28 TypesReader tr = new TypesReader(payload); | |
29 | |
30 int packet_type = tr.readByte(); | |
31 | |
32 if(packet_type != Packets.SSH_MSG_NEWKEYS) { | |
33 throw new PacketTypeException(packet_type); | |
34 } | |
35 if(tr.remain() != 0) { | |
36 throw new PacketFormatException(String.format("Padding in %s", Packets.getMessageName(packet_type))); | |
37 } | |
38 } | |
39 | |
40 public byte[] getPayload() { | |
41 return payload; | |
42 } | |
43 } |