导入证书
Ubuntu
CentOS
Windows
导入根证书
导入客户端证书
# 导入不含密码的证书
Set-Location -Path cert:\CurrentUser\My
Import-PfxCertificate -Filepath 'C:\client.p12'
# 导入含密码的证书
$pfxPassword = "PASSWORD" | ConvertTo-SecureString -AsPlainText -Force
Set-Location -Path cert:\CurrentUser\My
Import-PfxCertificate -Filepath 'C:\client.p12' -Password $pfxPassword
其他
# 查看 p12 证书的内容
openssl pkcs12 -in ~/cert.p12 -nodes -passin pass:"my password" | openssl x509 -noout -text