OpenSSL hangs during PKCS12 export with “Loading 'screen' into random state”

后端 未结 2 1714
日久生厌
日久生厌 2020-12-12 19:19

I am generating a self-signed SSL certificate with OpenSSL (not makecert), for use in IIS.

openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -         


        
相关标签:
2条回答
  • I found that I needed to specify the PFX password on the command line using -passout pass:SomePassword - e.g.:

    openssl pkcs12 -export -out foo_example_com.pfx -inkey foo_example_com.key -in foo_example_com.crt -passout pass:Pa55w0rd
    
    0 讨论(0)
  • 2020-12-12 20:05

    Please try to add winpty before oppenssl:

    winpty openssl ...
    

    or you can run a new bash wrapped by winpty:

    winpty bash
    

    In the windows console, there is some problem with terminal input/output so winpty can help if some software requires unix terminal behavior.

    winpty helped me to run openssl in this environment:

    git version 2.7.3.windows.1
    OpenSSL 1.0.2g  1 Mar 2016
    
    0 讨论(0)
提交回复
热议问题