* @throws IOException if an IO error occurs
*/
public void addKey(SshPrivateKey prvkey, SshPublicKey pubkey,
String description, KeyConstraints constraints)
throws IOException {
SubsystemMessage msg = new SshAgentAddKey(prvkey, pubkey, description,
constraints);
sendMessage(msg);
msg = readMessage();
if (!(msg instanceof SshAgentSuccess)) {