0

I am a little confused on all this certificate stuff. I want to create a certificate with a private key (exportable if possible). How do I do that. I already have a .pfx file. Can I use that to create a certificate with that private key?

SoftwareSavant
  • 9,467
  • 27
  • 121
  • 195

1 Answers1

1

A pfx file normally contains a private and a public key. That is why this file is normally password protected.

Depending on your operating system you can create new certificates with openssl or the certificate manager in the system options in windows.

Here is a screen of a actual wildcard certificate:

wildcard cert

rekire
  • 47,260
  • 30
  • 167
  • 264
  • is it possible to generate a certificate from that? Sorry for the dumb questions, I am just confused on the subject... Security was never one of my strong suits – SoftwareSavant Dec 21 '12 at 12:06
  • That depends on the key constrains. If this pfx file contains a root certificate so yes, if not no ;) – rekire Dec 21 '12 at 12:08
  • E.g. import the certificate in your certificate store and have a look to the key usage fields. – rekire Dec 21 '12 at 12:09