|
You are here |
nbailey.ca | ||
| | | | |
sgued.fr
|
|
| | | | | X509 certificate can be encoded either as DER or PEM. DER encoding is an efficient binary format, while PEM encoding is a wrapper around the Base 64 DER encoding of the certificate. Usually, when dealing with a specific certificate, you know beforehand whether it's encoded as DER or PEM. For example, in the opennssl CLI, you can give it the -inform parameter, which accepts either DER or PEM. However, what if don't know the encoding of the certificate, can you figure it out on the fly? | |
| | | | |
zaries.wordpress.com
|
|
| | | | | There are thousands of articles and entries in stackexchange but none of them worked for me out of the box. So after hours of battling with this issue here is my short recipe. Create the Root Key: openssl genrsa -out rootCA.key 2048 Self-sign this root certificate: openssl req -x509 -new -nodes -key rootCA.key -sha256 -days... | |
| | | | |
blog.foletta.net
|
|
| | | | | ||
| | | | |
www.neverbeclever.org
|
|
| | | |||