1

我想使用 id_rsa 和 id_rsa.pub 为 Java 应用程序创建一个质询-响应登录系统。为了这个目的,我希望能够从 id_rsa 和 id_rsa.pubPublicKey构建。PrivateKey

直接的方法是以我通常解析文本文件的方式来解析这些,然后手动构造适当的 java.security 数据结构以在客户端和服务器中进行签名和验证。

是否有标准库快捷方式可以直接摄取这些文件?

4

2 回答 2

0

是的,我刚刚写了:openssh-java。:-)

于 2014-01-29T22:11:06.323 回答
0

我知道的最接近和最简单的方法是使用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));
于 2013-12-10T14:33:11.247 回答