if (host.startsWith("*:")) {
final String port = host.substring(2);
host = "[" + httpRequest.get().getServerName() + "]:" + port;
}
final String fp = hk.getFingerPrint(JSCH);
r.add(new SshHostKey(host, hk.getType() + " " + hk.getKey(), fp));
}
callback.onSuccess(r);
}