0

我用 onpenssl 创建了一个 csr:

req -config c:\OpenSSL\openssl.cnf  -new -batch -sha256 -key private.pem -subj '/x500UniqueIdentifier=Hi' -out csr.pem

我的问题是如何使用密钥检查此命令的位输出长度:

 req  -config c:\OpenSSL\openssl.cnf  -in csr.pem
4

1 回答 1

0

采用:

req -in csr.pem -text

这将打印出 CSR 的内容,包括公钥的位长。

于 2013-09-26T22:56:18.870 回答