我已经使用下面的命令从Windows 10机器的Visual Studio命令提示符下使用“makecert.exe”创build了自签名证书:
makecert -n“CN = TempCA”-r -sv TempCA.pvk TempCA.cer
makecert -sk SignedByCA -iv TempCA.pvk -n“CN = SignedByCA”-ic TempCA.cer SignedByCA.cer -sr currentuser -ss My
现在我想从创build的证书中导出/提取公钥,并想validation它是否提取了公钥。
请引导我一样