About 1,420,000 results
Open links in new tab
  1. certificate - What is a Pem file and how does it differ from other ...

    Unlike .pem files, this container is fully encrypted. Openssl can turn this into a .pem file with both public and private keys: openssl pkcs12 -in file-to-convert.p12 -out converted-file.pem -nodes A few other …

  2. What are the differences between .pem, .cer, and .der?

    Mar 30, 2014 · .pem, .cer and .der are all file extensions for files that may contain a X.509 v3 certificate. The .der extension DER is the method of encoding the data that makes up the certificate. DER itself …

  3. Where is the PEM file format specified? - Stack Overflow

    Mar 18, 2011 · PEM is the textual encoding, but what is actually being encoded depends on the context. In April 2015, the IETF approved RFC 7468, which finally documents how various implementations …

  4. How can I check if the certificate file I have is in .pem format?

    Mar 7, 2011 · I have a root cert file and I don't know whether or not it is in .pem format. How do I check if it is in .pem format?

  5. How to create .pem files for https web server - Stack Overflow

    The two files you need are a PEM encoded SSL certificate and private key. PEM encoded certs and keys are Base64 encoded text with start/end delimiters that look like -----BEGIN RSA PRIVATE KEY- …

  6. keytool - How do I Import a .pem file? - Stack Overflow

    Nov 7, 2013 · How can I solve this problem? Additional Info: After further work, I am leaning towards exactly the opposite conclusion than the one above. I now think that something is wrong with my …

  7. ssh - what is the difference between various keys in public key ...

    Jul 16, 2013 · key.pem can contain anything - a certificate with a public key, an SSH public key, public key + private key, certificate with a public key + private key. PEM is a text file so you can open it in …

  8. How do I convert a .cer certificate to .pem? - Server Fault

    Apr 1, 2011 · 25 To convert a .cer file to .pem, open a terminal and run the following command: openssl x509 -inform der -in certificate.cer -outform pem -out certificate.pem Replace "certificate.cer" with the …

  9. how is an SSL certificate chain bundle arranged? - Stack Overflow

    Apr 19, 2024 · 6 I have 4 certificate files like this: 1.certum_certificate.crt 2.certum_certificate.pem 3.Intermediate_CA2.cer 4.Intermediate_CA.cer 5.Root_CA.cer I put these files content by this order …

  10. Convert PEM traditional private key to PKCS8 private key

    My understanding is without a header following the BEGIN RSA PRIVATE KEY header that this pem file contains a private key in the traditional format (PKCS1) without encryption.