Does a PEM file containing the full cert chain and private key have a specific name? #490
-
I've seen various provisioning of files:
Certbot has it's own naming conventions: There doesn't seem to be any particular name that I could find when the private key is included with the full certificate chain. I assume I'm contributing a PR feature which requires this format and just want to make sure I name it correctly. Is there some industry term specific to that mix? I noticed |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
There's a lot of standards and formats and not a lot of consistency among them. One term that comes to mind is "bundle". The precedent for this is PKCS #12 files, which are often used to bundle the cert and private key. They are especially popular for Java and some Microsoft applications. |
Beta Was this translation helpful? Give feedback.
-
As far as I know, there's no specific or most common name for a PEM file containing the
There's an old format called PKCS#12 that contains the full chain and the private key, but it shouldn't be used for new applications because it's based on weak encryption primitives. |
Beta Was this translation helpful? Give feedback.
As far as I know, there's no specific or most common name for a PEM file containing the
leaf+intermediate(s)+key
.step
doesn't really create those files, most of the applications using PEM files, uses two different files for it, and if really needed you can always docat cert.pem cert.key > whatever.pem
.There's an old format called PKCS#12 that contains the full chain and the private key, but it shouldn't be used for new applications because it's based on weak encryption primitives.