About 928,000 results
Open links in new tab
  1. Converting pfx to pem using openssl - Stack Overflow

    Mar 14, 2013 · How to generate a .pem CA certificate and client certificate from a PFX file using OpenSSL.

  2. ssl - How to install OpenSSL in Windows 10? - Stack Overflow

    I have a question about how and which version of OpenSSL I must install on Windows to later create certificates. I installed one version (openssl-1.0.2d-fips-2.0.10) found on SourceForge …

  3. Running openssl commands in PowerShell - Stack Overflow

    Running openssl commands in PowerShell Asked 8 years, 1 month ago Modified 8 years, 1 month ago Viewed 70k times

  4. How can I generate a self-signed SSL certificate using OpenSSL?

    The W3C's WebAppSec Working Group is starting to look at the issue. See, for example, Proposal: Marking HTTP As Non-Secure. How to create a self-signed certificate with …

  5. Converting PKCS#12 certificate into PEM using OpenSSL

    Try: openssl pkcs12 -in path.p12 -out newfile.crt.pem -clcerts -nokeys openssl pkcs12 -in path.p12 -out newfile.key.pem -nocerts -nodes After that you have: certificate in …

  6. ssl - How do you sign a Certificate Signing Request with your ...

    Jan 23, 2014 · $ openssl req -config openssl-server.cnf -newkey rsa:2048 -sha256 -nodes -out servercert.csr -outform PEM After this command executes, you will have a request in …

  7. How to talk to IMAP server in Shell via OpenSSL - Stack Overflow

    I want to send IMAP commands via Mac OS X Terminal to server and get response. I can connect to the server using this line: openssl s_client -connect imap.gmail.com:993 And I can …

  8. Openssl is not recognized as an internal or external command

    Aug 10, 2012 · keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64 In the tutorial, it says that by running this cmd, my …

  9. 'openssl' is not recognized as internal or external command

    Dec 30, 2013 · keytool -exportcert -alias androiddebugkey -keystore "<path-to-users-directory>\.android\debug.keystore" | openssl sha1 -binary | openssl base64 But the command …

  10. certutil commands to check certificate and verify hash equivalent …

    Jul 11, 2025 · openssl cms -verify -binary -content <INPUT_FILE> -inform PEM -purpose any -CAfile <CERT_FILE> -inform DER -in <SIGNATURE_FILE> These work fine for me and …