在本地 IIS Express上启用客户端证书:
将 \YourSlnFolder\.vs\config\applicationhost.config -><section name="access" overrideModeDefault="Deny" />
更改为<section name="access" overrideModeDefault="Allow" />
<sectionGroup name="system.webServer">
...
<sectionGroup name="security">
...
<section name="access" overrideModeDefault="Allow" />
然后像这样编辑您的 Web.config:
<configuration>
<system.webServer>
<security>
<access sslFlags="SslRequireCert" />
</security>
</system.webServer>
</configuration>
在IIS上启用客户端证书:
转到 IIS 管理器中的网站,然后单击 SSL 设置。然后将应用程序设置为需要 SSL 和需要客户端证书。
创建新证书:
启动 VS 开发者命令提示符
根证书:
makecert.exe -r -n "CN=TestRootCertificate" -pe -sv TestRootCertificate.pvk -a sha1 -len 2048 -b 01/01/2017 -e 01/01/2030 -cy authority TestRootCertificate.cer
输入您的密码。
创建证书吊销列表 (CRL)
makecert -crl -n "CN=TestRootCertificate" -r -sv TestRootCertificate.pvk TestRootCertificate.crl
捆绑到 .pfx(pvk2pfx.exe 需要为 VS2017 安装“使用 C++ 进行桌面开发”)
pvk2pfx.exe -pvk TestRootCertificate.pvk -pi {password} -spc TestRootCertificate.cer -pfx TestRootCertificate.pfx
来自根证书的客户端证书:
makecert.exe -ic TestRootCertificate.cer -iv TestRootCertificate.pvk -pe -sv localtestclientcert.pvk -a sha1 -n "CN=localtestclientcert" -len 2048 -b 01/01/2015 -e 01/01/2030 -sky exchange localtestclientcert.cer -eku 1.3.6.1.5.5.7.3.2
输入您的密码。
pvk2pfx.exe -pvk localtestclientcert.pvk -pi {password} -spc localtestclientcert.cer -pfx localtestclientcert.pfx
导入证书。
启动 mmc.exe。
File -> Add or Remove Snap-ins -> Certificates -> Add -> Computer account -> Local computer
Certificates (Local Computer) -> Personal -> Certificates -> Right click -> All tasks -> Import -> localtestclientcert.pfx
Certificates (Local Computer) -> Trusted Root Certification Authorities -> Certificates -> Right click -> All tasks -> Import -> RootCertificate.cer
用于在浏览器中进行身份验证:
File -> Add or Remove Snap-ins -> Certificates -> Add -> My user account
Certificates - Current User -> Personal -> Certificates -> Right click -> All tasks -> Import -> localtestclientcert.pfx
现在访问您的站点需要服务器信任的客户端证书:
如果您已遵循本指南并收到如下错误:
HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid.
或者
HTTP Error 403.7 - Forbidden
The page you are attempting to access requires your browser to have a Secure Sockets Layer (SSL) client certificate that the Web server recognizes.
您可能需要重新启动计算机。请注意,仅关闭 iisexpress 进程或 Visual Studio 是不够的。500.19
无需重新启动即可解决,但证书很棘手,因此推荐的方法是重新启动计算机。
如果您收到错误The request was aborted: Could not create SSL/TLS secure channel
,可能是由于应用程序池无权访问特定证书。
证书(本地计算机) -> 个人 -> 证书 -> localtestclientcert -> 右键单击 -> 所有任务 -> 管理私钥 -> 添加IIS APPPOOL\YourWebSite
并授予它完全控制权。