Does a CSR need to be signed with the matching private key?

。_饼干妹妹 提交于 2021-02-05 11:13:42

问题


When generate a CSR using OpenSSL you have two options: 1) Generate a Private key when the CSR is generated 2) Use the private key to derive a public key and use the public key to create the CSR

Does the CSR need to be signed with the matching private key for the CA to validate it?

Hypothetically, what if i have TWO key pairs (PubKey1, PrivKey1, PubKey2, PrivKey2). First thing i do is move PrivKey1 to another place. Is there a way where I can use PubKey1 to make the CSR (Without access to PrivKey1), but sign it with PrivKey2 to preserve integrity?

Can someone explain why this scenario will not work for the CA?

I've been googling a bunch and the documentation available does not go into any detail as to the Private Key's role in the creation of a CSR.


回答1:


Does the CSR need to be signed with the matching private key for the CA to validate it?

Yes. A PKCS #10 certificate request is always signed with the private key that matches the public key.

Is there a way where I can use PubKey1 to make the CSR (Without access to PrivKey1), but sign it with PrivKey2 to preserve integrity?

No. The reason the private key signs the CSR is to demonstrate to the CA that you have ownership of the private key that corresponds to the public key. If you sign with a different private key, the CA will reject your request as invalid.



来源:https://stackoverflow.com/questions/15216440/does-a-csr-need-to-be-signed-with-the-matching-private-key

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!