了解X.509证书和makecert.exe命令

时间:2015-12-16 09:53:25

标签: ssl-certificate x509certificate makecert

我已经使用makecert.exe来创建证书,但我不确定究竟发生了什么,或者某些命令是什么意思。

这是我的命令:

@Context
private HttpServletRequest servletRequest;

final URI contextUri
     = URI.create(servletRequest.getRequestURL().toString())
    .resolve(servletRequest.getContextPath());

为了说清楚,我按照指南创建了这个证书,我只想知道发生了什么

我理解这个命令的大部分内容,例如

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. 。我不太确定这究竟是什么意思。有人可以为我澄清这个吗?

注意: 如果其他任何命令错误,请赐教

0 个答案:

没有答案