如何为gdata java api生成rsa密钥?

发布于 2024-10-14 03:40:31 字数 90 浏览 7 评论 0原文

我想访问我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咽泪装欢 2024-10-21 03:40:31

如何生成 RSA 密钥可以在 Google API 文档中找到:

http://code.google.com/intl/de-DE/apis/gdata/docs/auth/authsub.html#Registered

# Generate the RSA keys and certificate
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj \
  '/C=US/ST=CA/L=Mountain View/CN=www.example.com' -keyout \
  myrsakey.pem -out /tmp/myrsacert.pem

使用 Java keytools 非常相似。

首先,生成密钥对:

keytool -genkey -alias myrsakey -keyalg RSA -validity 365 \
 -dname="CN=US, ST=CA/L=Mountain View, CN=www.example.com" \
 -keystore mykeystore.jks

然后就可以导出证书了:

keytool -keystore mykeystore.jks -export -alias myrsakey -rfc -file key.pem

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

# Generate the RSA keys and certificate
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj \
  '/C=US/ST=CA/L=Mountain View/CN=www.example.com' -keyout \
  myrsakey.pem -out /tmp/myrsacert.pem

Using Java keytools is very similar.

First, generate the key pair:

keytool -genkey -alias myrsakey -keyalg RSA -validity 365 \
 -dname="CN=US, ST=CA/L=Mountain View, CN=www.example.com" \
 -keystore mykeystore.jks

Then you can export the certificate:

keytool -keystore mykeystore.jks -export -alias myrsakey -rfc -file key.pem

AFAIK private keys can not be exported directly via keytool.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文