本文介绍了以 RSA OpenSSH 格式读取 KeyPair 的公钥?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我通过执行以下操作在 Java 中创建了一个 KeyPair:
I’ve created a KeyPair in Java by doing the following:
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
keyPairGenerator.initialize(1024, new SecureRandom());
KeyPair keyPair = keyPairGenerator.generateKeyPair();
如何从 keyPair 获取以 -----BEGIN" 开头的 RSA OpenSSH 格式的 publicKey?
How do I get the publicKey from keyPair in the RSA OpenSSH format that begins with "-----BEGIN"?
推荐答案
这是一个我没有测试过的快速 hack.这需要 Java 6 或更高版本.有关详细信息,请参阅以下 RFC:
Here is a quick hack which I haven't tested. This requires Java 6 or greater. For more information see the following RFCs:
RFC 4716
RFC 4253
RFC 4251
import java.io.*;
import java.math.BigInteger;
import java.nio.*;
import java.nio.charset.Charset;
import java.security.*;
import java.security.interfaces.RSAPublicKey;
import javax.xml.bind.DatatypeConverter;
public class SecshPublicKey {
/*
* Taken from RFC 4716, with reference to RFCs 4253 and 4251.
*/
public static void main(String[] args) throws Exception {
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
keyPairGenerator.initialize(1024, new SecureRandom());
KeyPair keyPair = keyPairGenerator.generateKeyPair();
ByteArrayOutputStream binaryOS = new ByteArrayOutputStream();
writeSshString(binaryOS, "ssh-rsa");
RSAPublicKey rsaPub = (RSAPublicKey)keyPair.getPublic();
writeSshMPInt(binaryOS, rsaPub.getPublicExponent());
writeSshMPInt(binaryOS, rsaPub.getModulus());
// Now base64-encode the result.
String b64Encoded = sshBase64Encode(binaryOS.toByteArray());
// Now write out the result
System.out.println("---- BEGIN SSH2 PUBLIC KEY ----");
System.out.println(b64Encoded);
System.out.println("---- END SSH2 PUBLIC KEY ----");
}
private static String sshBase64Encode(byte[] byteArray) {
String b64_prelim = DatatypeConverter.printBase64Binary(byteArray);
// Break into lines of at most 72 characters.
StringBuilder b64_final = new StringBuilder(b64_prelim.length() * 2);
while (b64_prelim.length() > 72) {
b64_final.append(b64_prelim.substring(0, 72));
b64_final.append("
");
b64_prelim = b64_prelim.substring(72);
}
b64_final.append(b64_prelim);
return b64_final.toString();
}
private static void writeSshMPInt(OutputStream os, BigInteger mpint) throws IOException {
ByteBuffer lengthBuf = ByteBuffer.allocate(4);
lengthBuf.order(ByteOrder.BIG_ENDIAN);
byte [] x;
if (mpint.equals(BigInteger.ZERO)) {
x = new byte[0];
} else {
x = mpint.toByteArray();
}
lengthBuf.putInt(x.length);
os.write(lengthBuf.array());
os.write(x);
}
private static void writeSshString(OutputStream os, String s) throws IOException {
ByteBuffer lengthBuf = ByteBuffer.allocate(4);
lengthBuf.order(ByteOrder.BIG_ENDIAN);
byte [] encoded = s.getBytes(Charset.forName("UTF-8"));
lengthBuf.putInt(encoded.length);
os.write(lengthBuf.array());
os.write(encoded);
}
}
这篇关于以 RSA OpenSSH 格式读取 KeyPair 的公钥?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)