我正在尝试在wamp 64上运行ssl。我已经从http://slproweb.com/products/Win32OpenSSL.html站点下载并安装了Openssl "Win64 OpenSSL v1.0.2g“。
当我试图从cmd生成私钥(openssl genrsa -aes256 -out private.key 2048)时,我得到了这个错误:
the ordinal 372 could not be located in the dynamic link library C:\wamp64\bin\apache\apache2.4.17\bin\openssl.exe.
有什么帮助吗?
发布于 2017-11-30 17:46:35
您需要通过更改cmd中openssl.exe文件所在的目录来运行该命令openssl genrsa -aes256 -out private.key 2048。我将建议您使用openssl genrsa -out private.key 2048命令
https://stackoverflow.com/questions/36786457
复制相似问题