如何为gdata java api生成rsa密钥?
我想访问我的 Google 数据的数据源。我正在使用 gdata 私人库。如何使用 Java Keytool 生成 RSA 密钥?如何将该密钥转换为 .pk8 格式?
I want to access data feed of my Google Data. I am using gdata private library. How do I generate RSA-Key using Java Keytool ? How do I convert that key to .pk8 format ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何生成 RSA 密钥可以在 Google API 文档中找到:
http://code.google.com/intl/de-DE/apis/gdata/docs/auth/authsub.html#Registered
使用 Java keytools 非常相似。
首先,生成密钥对:
然后就可以导出证书了:
AFAIK私钥不能直接通过keytool导出。
How to generate the RSA key can be found in the Google API documentation:
http://code.google.com/intl/de-DE/apis/gdata/docs/auth/authsub.html#Registered
Using Java keytools is very similar.
First, generate the key pair:
Then you can export the certificate:
AFAIK private keys can not be exported directly via keytool.