SSL查询-证书更新的CSR

发布于 2024-11-26 18:22:54 字数 282 浏览 2 评论 0原文

需要了解 SSL 及其运作方式。请帮忙回答以下问题。

据我了解,我们生成的 CSR 包含公钥和 DN 信息,即 C=、CN=、L=、O=、OU=、ST=。

这两个组件(JPMC 公钥和 DN)都经过哈希处理吗?在我们向它们请求证书(新证书或证书续订)时,哈希值是否也发送到威瑞信。

使用 JPMC 的私钥对这些数量(公钥、DN 和哈希值)进行加密。

Verisign (CA) 是否使用我们作为 CSR 的一部分发送给他们的公钥,或者他们是否通过其他方式获取公钥来解密上面加密的内容。

Need the understanding about SSL and the way it functions. Kindly help answer the below.

I understand that the CSR that we generate has our public key and DN info i.e C=,CN=,L=,O=,OU=,ST=.

Are both these two compoments (JPMC public key and the DN) hashed and if the hash is also send to verisign at the time we request them for a cert (new cert or a cert renewal).

What amount these (public key, DN and the hash) are encrypted using JPMC's private key.

Does Verisign (CA) use the public key that we send them as part of the CSR or do they have it from other means inorder to decrypt whatever was encrypted above.

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

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

发布评论

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

评论(1

甜点 2024-12-03 18:22:54

不,证书签名请求中的信息未经过哈希处理 - 怎么可能 - 哈希处理后无法取回信息?它也没有加密,没有任何信息是敏感的。

CSR 包含正在使用的 PKCS#10 标准的版本、证书所针对的实体的 DN、将使用的公钥以及可选的一些属性,例如主题备用名称等。CSR

是使用为发起请求而生成的私钥(或者在更新时使用现有证书的私钥)进行签名。

PKCS#10 是所有这一切的主要规范。

No, the information in a certificate signing request is not hashed - how could it be - you can't get the information back after hashing? It is not encrypted either, none of the information is sensitive.

A CSR contains the version of the PKCS#10 standard which is being used, the DN of the entity the certificate is for, the public key that will be used, and optionally, some attributes such as subject alternate names, etc.

The CSR is signed, using the private key generated to initiate the request (or, in renewal, the private key of the existing certificate).

PKCS#10 is the main specification for all of this.

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