Hello
My question is: Why do I need to use separate public key pairs for signing and encryption
and not use the same key pair with RSA for example?
These is any security problem with using the same key?
|
|
||||
|
|
|
The reason for using separate key pairs for signing and encryption is to spread the risk: If someone recovers the private encryption key, he/she can decrypt documents that were encrypted using the public encryption key but can’t use it to also sign documents and vice versa. Another reason could be a legal reason:
|
|||||||||
|
|
You might want to go to see this similar question from the security stack : IMHO, the answer from Am1rr3zA is the best. |
|||
|
|
|
I'm not entirely sure what you are getting at. I am going to assume you want to know why you should use different keys for https/ssl/ssh and code signing (other than that they have different usage bits). SSL certificates have to hang out around web servers, which are infamous for being compromised. Code signing certificates can be hidden away completely offline. In theory. In practice web servers are managed by professional sysadmins, and code signing certs are left lying around on bodge-a-job developer PCs. Also there's the Principle of Least Privilege. |
|||
|
|
|
Read this : http://en.wikipedia.org/wiki/Public-key_cryptography Basically you are asking about the different between asymmetric and symmetric encryption. |
|||||||
|