我想使用 id_rsa 和 id_rsa.pub 为 Java 应用程序创建一个质询-响应登录系统。为了这个目的,我希望能够从 id_rsa 和 id_rsa.pubPublicKey
构建。PrivateKey
直接的方法是以我通常解析文本文件的方式来解析这些,然后手动构造适当的 java.security 数据结构以在客户端和服务器中进行签名和验证。
是否有标准库快捷方式可以直接摄取这些文件?
我想使用 id_rsa 和 id_rsa.pub 为 Java 应用程序创建一个质询-响应登录系统。为了这个目的,我希望能够从 id_rsa 和 id_rsa.pubPublicKey
构建。PrivateKey
直接的方法是以我通常解析文本文件的方式来解析这些,然后手动构造适当的 java.security 数据结构以在客户端和服务器中进行签名和验证。
是否有标准库快捷方式可以直接摄取这些文件?
是的,我刚刚写了:openssh-java。:-)
我知道的最接近和最简单的方法是使用The Legion of the Bouncy Castle Java API 和这样的东西 -
// Just for the public / private key files...
private static String readFileAsString(
String filePath) throws java.io.IOException {
StringBuilder sb = new StringBuilder(100);
BufferedReader reader = null;
try {
reader = new BufferedReader(new FileReader(
filePath));
int fileIn;
while ((fileIn = reader.read()) != -1) {
sb.append((char) fileIn);
}
} finally {
reader.close();
}
return sb.toString();
}
// Add the SecurityProvider and a Base64 Decoder (Once)
Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
BASE64Decoder b64 = new BASE64Decoder();
// For the publicKey
String publicKeyString = readFileAsString(publicKeyFileName);
AsymmetricKeyParameter publicKey =
(AsymmetricKeyParameter) PublicKeyFactory.createKey(b64.decodeBuffer(publicKeyString));
// For the privateKey
String privateKeyString = readFileAsString(privateKeyFilename);
AsymmetricKeyParameter privateKey =
(AsymmetricKeyParameter) PrivateKeyFactory.createKey(b64.decodeBuffer(privateKeyString));