view app/src/main/java/ch/ethz/ssh2/packets/PacketUserauthFailure.java @ 461:8ac203bbd3c2
Added tag stable-1.9.3-4 for changeset 4776062555f3
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Sun, 28 Apr 2019 17:10:22 -0700 (2019-04-29) |
parents |
d29cce60f393 |
children |
|
line source
/*
* Copyright (c) 2006-2013 Christian Plattner. All rights reserved.
* Please refer to the LICENSE.txt for licensing details.
*/
package ch.ethz.ssh2.packets;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import ch.ethz.ssh2.PacketFormatException;
import ch.ethz.ssh2.PacketTypeException;
/**
* @author Christian Plattner
* @version $Id: PacketUserauthFailure.java 160 2014-05-01 14:30:26Z dkocher@sudo.ch $
*/
public final class PacketUserauthFailure {
private final byte[] payload;
private Set<String> authThatCanContinue;
private boolean partialSuccess;
public PacketUserauthFailure(Set<String> authThatCanContinue, boolean partialSuccess) {
this.authThatCanContinue = authThatCanContinue;
this.partialSuccess = partialSuccess;
TypesWriter tw = new TypesWriter();
tw.writeByte(Packets.SSH_MSG_USERAUTH_FAILURE);
tw.writeNameList(authThatCanContinue.toArray(new String[authThatCanContinue.size()]));
tw.writeBoolean(partialSuccess);
payload = tw.getBytes();
}
public PacketUserauthFailure(byte payload[]) throws IOException {
this.payload = payload;
TypesReader tr = new TypesReader(payload);
int packet_type = tr.readByte();
if (packet_type != Packets.SSH_MSG_USERAUTH_FAILURE) {
throw new PacketTypeException(packet_type);
}
authThatCanContinue = new HashSet<String>(Arrays.asList(tr.readNameList()));
partialSuccess = tr.readBoolean();
if (tr.remain() != 0) {
throw new PacketFormatException(String.format("Padding in %s", Packets.getMessageName(packet_type)));
}
}
public byte[] getPayload() {
return payload;
}
public Set<String> getAuthThatCanContinue() {
return authThatCanContinue;
}
public boolean isPartialSuccess() {
return partialSuccess;
}
}