Crosswords18 mins ago
How do I send someone my PEM certificate
1 Answers
Hi I have a problem with a server using ssl. I've been asked to send someone my PEM certificate for analysis. Does anyone know how I get this to email. My server is win 2008.
Thanks
Thanks
Answers
Best Answer
No best answer has yet been selected by andydingdang. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.PEM on it's own isn't a certificate, it's just a way of encoding data. X.509 certificates are one type of data that is commonly encoded using PEM.
PEM is a X.509 certificate (whose structure is defined using ASN.1), encoded using the ASN.1 DER (distinguished encoding rules), then run through Base64 encoding and stuck between plain-text anchor lines (BEGIN CERTIFICATE and END CERTIFICATE).
You can represent the same data using the PKCS#7 or PKCS#12 representations, and the openssl command line utility can be used to do this.
The obvious benefits of PEM is that it's safe to paste into the body of an email message because it has anchor lines and is 7-bit clean.
RFC1422 has more details about the PEM standard as it related to keys and certificates. Media URL: https://www.sslshopper.com/ssl-converter.html
Description:
PEM is a X.509 certificate (whose structure is defined using ASN.1), encoded using the ASN.1 DER (distinguished encoding rules), then run through Base64 encoding and stuck between plain-text anchor lines (BEGIN CERTIFICATE and END CERTIFICATE).
You can represent the same data using the PKCS#7 or PKCS#12 representations, and the openssl command line utility can be used to do this.
The obvious benefits of PEM is that it's safe to paste into the body of an email message because it has anchor lines and is 7-bit clean.
RFC1422 has more details about the PEM standard as it related to keys and certificates. Media URL: https://www.sslshopper.com/ssl-converter.html
Description:
Related Questions
Sorry, we can't find any related questions. Try using the search bar at the top of the page to search for some keywords, or choose a topic and submit your own question.