我已经使用 makecert.exe 创建了一个证书,但我不确定到底发生了什么,或者某些命令的含义。
这是我的命令:
makecert -r -pe -n "CN=Test certificate" -b 10/22/2015 -e 10/22/2016 -ss my -len 2048
为了清楚起见,我遵循了创建此证书的指南,我只是想知道发生了什么
我理解这个命令的大部分内容,例如
-r = making the certificate self-signed,
-pe = making the private key exportable,
-n = specifies the name of the certificate subject,
-b = specifies the beginning date of the validation period,
-e = specifies the end date of the validation period,
-len = specifies the key length in bits.
我不明白的是-ss my
。我不太确定这到底是什么意思。谁能为我澄清一下?
注意:如果其他命令有错误,请赐教