8

I have an SSL certificate in a Java keystore. It's going to expire in a week or so and I need to renew it.

Can I reuse the previous CSR (which the CA still have) and then import the certificate using the import command or do I need to generate a new CSR?

Kevin Panko
  • 8,356
  • 19
  • 50
  • 61
Brian Beckett
  • 4,742
  • 6
  • 33
  • 52
  • If today is Jan1,2011 and I use a CSR dated from Jan 31,2010, will the cert reply work for 1 month or one year? – djangofan Feb 28 '11 at 23:36
  • @djangofan - You'd be more likely to get a response if you asked that as a question. I don't have the answer, I'm afraid :) – Brian Beckett Mar 01 '11 at 09:38

1 Answers1

7

You can (if your CA doesn't check for public key reuse), but it's a bad security practice. The primary purpose of the validity period is to limit the time in which a certificate and associated private key is exposed to the possibility of being compromised.

bignum
  • 3,448
  • 3
  • 21
  • 18