我在哪里可以获得 PEM(私钥)密钥?

发布于 2024-11-07 17:25:07 字数 323 浏览 0 评论 0原文

我正在为 Salesforce 处理 IdP 发起的 SAML 响应,需要您的帮助。

我正在处理代码,发现我需要一个 .pem(私钥)密钥。

KeyStore.PrivateKeyEntry pkEntry = (KeyStore.PrivateKeyEntry)   ks.getEntry("alias", new KeyStore.PasswordProtection(password));
PrivateKey pk = pkEntry.getPrivateKey();

PEM 密钥将用于签署我的响应签名。我在哪里可以获得 .pem 密钥?

I am working on IdP-initiated SAML response for Salesforce and need your help.

I was working with the code and found that I need a .pem (private) key.

KeyStore.PrivateKeyEntry pkEntry = (KeyStore.PrivateKeyEntry)   ks.getEntry("alias", new KeyStore.PasswordProtection(password));
PrivateKey pk = pkEntry.getPrivateKey();

The PEM key will be used to sign my response signature. Where can I get a .pem key?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情丝乱 2024-11-14 17:25:08
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj ‘/C=US/ST=CA/L=San Mateo/CN=www.appirio.com’ -keyout key-mycompanyrsa.pem -out cert-mycompanyrsa.pem

更多信息:
http://blog.jeffdouglas。 com/2010/07/06/using-rsa-sha1-with-salesforce-crypto-class/

openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj ‘/C=US/ST=CA/L=San Mateo/CN=www.appirio.com’ -keyout key-mycompanyrsa.pem -out cert-mycompanyrsa.pem

More info:
http://blog.jeffdouglas.com/2010/07/06/using-rsa-sha1-with-salesforce-crypto-class/

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