We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modern Linux installations no longer provide MD5 SSH fingerprints by default. Therefore I implemented some code for replacing calls like
sshClient.addHostKeyVerifier("4b:69:6c:72:6f:79:20:77:61:73:20:68:65:72:65:21");.
sshClient.addHostKeyVerifier("4b:69:6c:72:6f:79:20:77:61:73:20:68:65:72:65:21");
Using the helper class from the following GIST it is possible to write:
sshClient.addHostKeyVerifier(SSHFingerprintVerifier.getInstance("SHA1:<base64 encoded fingerprint>"));
SHA-256 and the old MD5 (no prefix, just the old hex notation) are supported as well.
SHA-256
MD5
The text was updated successfully, but these errors were encountered:
Thanks for the Gist and issue, I've added this in PR #365
Sorry, something went wrong.
No branches or pull requests
Modern Linux installations no longer provide MD5 SSH fingerprints by default.
Therefore I implemented some code for replacing calls like
sshClient.addHostKeyVerifier("4b:69:6c:72:6f:79:20:77:61:73:20:68:65:72:65:21");
.Using the helper class from the following GIST it is possible to write:
sshClient.addHostKeyVerifier(SSHFingerprintVerifier.getInstance("SHA1:<base64 encoded fingerprint>"));
SHA-256
and the oldMD5
(no prefix, just the old hex notation) are supported as well.The text was updated successfully, but these errors were encountered: