Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

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:

In several countries, a digital signature has a status somewhat like that of a traditional pen and paper signature, like in the EU digital signature legislation. Generally, these provisions mean that anything digitally signed legally binds the signer of the document to the terms therein. For that reason, it is often thought best to use separate key pairs for encrypting and signing. Using the encryption key pair, a person can engage in an encrypted conversation (e.g., regarding a real estate transaction), but the encryption does not legally sign every message he sends. Only when both parties come to an agreement do they sign a contract with their signing keys, and only then are they legally bound by the terms of a specific document. After signing, the document can be sent over the encrypted link. If a signing key is lost or compromised, it can be revoked to mitigate any future transactions. If an encryption key is lost, a backup or key escrow should be utilized to continue viewing encrypted content. Signing keys should never be backed up or escrowed.

share|improve this answer
Would it be reasonable to have two signing key pairs, one for "I sent this message" (which would be useful during contract negotiations), and another one for "I want to be legally bound by this contract"? – Paŭlo Ebermann Jun 2 '11 at 23:48
@Paŭlo Ebermann: No, I guess not. – Gumbo Jun 3 '11 at 6:40
1  
disagree, one of the signatures is stating i do not wish to be legally bound. Which is an important distinction. – John Nicholas Jul 7 '11 at 10:56

You might want to go to see this similar question from the security stack :

http://security.stackexchange.com/questions/1806/why-should-one-not-use-the-same-asymmetric-key-for-encryption-as-they-do-for-sig

IMHO, the answer from Am1rr3zA is the best.

share|improve this answer

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.

share|improve this answer

Read this : http://en.wikipedia.org/wiki/Public-key_cryptography

Basically you are asking about the different between asymmetric and symmetric encryption.

share|improve this answer
I understand the question to be about why using different keypairs for (assymetric) encryption and (also assymetric) signing. In principle my public signing key could work for sending encrypted messages to me, too. – Paŭlo Ebermann Mar 15 '11 at 18:30
... then there is no point of having a public & private key. The whole idea is having 2 keys, one should encrypt and one should decrypt. If the same key does that then it's pointless to have using assymetric enc. I think I still didn't get what you are trying to ask. – dr. evil Mar 15 '11 at 22:05
(It was not me asking here.) The way public key cryptography works: cryptotext = crypt(message, public_key); message = crypt(cryptotext, private_key). Public key signing: signature = crypt(message, private_key); message = crypt(signature, public_key) (with message being usually a hash of the document). Where is the reason to use another key pair for the first two operations than for the last two? – Paŭlo Ebermann Mar 15 '11 at 23:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.