本文介绍了使用“SSH2 PUBLIC KEY"中的公钥验证 JSch 中的主机密钥格式 (RFC 4716)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在尝试使用以下方法验证主机密钥时遇到 UnknownHostKey: servername
问题:
I am facing a problem with UnknownHostKey: servername
, when trying to verify the host key using:
jsch.setKnownHosts("target/hostname_keys");
是否可以使用像这样的 SSH2 格式的主机密钥文件
Is it possible to use hostkey file in SSH2 format that looks like this
---- BEGIN SSH2 PUBLIC KEY ----
AAAAB3NzaC1kc3MAAACBAKKQ7hwq7
.....
w5Uw==
---- END SSH2 PUBLIC KEY ----
与 JSch?
是否有一些好的库可以使用 SSH2 密钥?
Is there some good libraries that can work with SSH2 keys?
推荐答案
JSch 不支持这种格式的公钥.
JSch does not support public keys in this format.
但是很容易将其转换为 known_hosts
格式.
But it's easy to convert that to known_hosts
format.
基本上,只需将这些行合并为一行并在前面添加一个主机名:
Basically, just merge the lines into one and prepend a hostname:
example.com AAAAB3NzaC1kc3MAAACBAKKQ7hwq7...w5Uw==
这篇关于使用“SSH2 PUBLIC KEY"中的公钥验证 JSch 中的主机密钥格式 (RFC 4716)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!