controller.messageRoom(command.getArg(0), new Message(controller.getUserName(command.getArg(0)), command.getArg(1)));
} else if (command.getCommand() == CLICommand.Command.PVTMESSAGE) {
controller.messageRoom(command.getArg(1), new Message(controller.getUserName(command.getArg(1)), command.getArg(2), command.getArg(0)));
} else if (command.getCommand() == CLICommand.Command.ADDKEY) {
FileInputStream publicKeyFile = new FileInputStream(command.getArg(1));
byte publicKey[] = new byte[(int) publicKeyFile.available()];
publicKeyFile.read(publicKey);
FileInputStream privateKeyFile = new FileInputStream(command.getArg(2));
byte privateKey[] = new byte[(int) privateKeyFile.available()];
privateKeyFile.read(privateKey);