0

We've got Subversion Edge installed successfully and I need to secure it with a SSL certificate rather than the generated one.

I have a cert in the windows cert store, I need to export this to .crt and .key.

Does anyone know what tools I should use to do it, or If i can do it in windows?

is it openssl?

Knox
  • 2,463
  • 2
  • 26
  • 34
iain
  • 103
  • 2

1 Answers1

0

Yeah, use OpenSSL.

You'll export a PKCS12 file from windows (make sure you include the private key), and you'll convert it to X509:

openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
openssl pkcs12 -in cert.pfx -out cert.key -nocerts -nodes
Shane Madden
  • 114,520
  • 13
  • 181
  • 251