OpenSSL - 创建私钥不提示密码

OpenSSL - 创建私钥不提示密码

我在 Windows 上安装了 OpenSSL 1.1.1https://kb.firedaemon.com/support/solutions/articles/4000121705#Download-OpenSSL

当我创建私钥时,没有收到密码提示

openssl genrsa -aes256 -out PrivKey.pem 2048

输出:

Generating RSA private key, 2048 bit long modulus (2 primes)

我期待密码提示,我不记得之前添加/选择过密码。

创建私钥时应如何提示密码?

答案1

在这个答案中有一个可行的解决方案: https://stackoverflow.com/questions/67275008/in-git-bash-windows-openssl-pkcs12-does-not-prompt-for-password#answer-72652625

在命令前加上“winpty”

winpty bash脚本.sh......

winpty openssl.....

相关内容