作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的单声道虚拟机上使用这个命令
sudo mozroots --import --sync
certmgr -ssl https://www.site.com/users/login --machine
System.Net.WebException: Error getting response stream (Write: The authentication or decryption has failed.): SendFailure ---> System.IO.IOException: The authentication or decryption has failed. ---> Mono.Security.Protocol.Tls.TlsException: Invalid certificate received from server. Error code: 0xffffffff80092012
最佳答案
关于错误 606002 的后续行动 - 这是忽略所述错误代码的代码。在初始化时调用一次
ServicePointManager.ServerCertificateValidationCallback += delegate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors sslPolicyErrors) {
if (sslPolicyErrors == SslPolicyErrors.RemoteCertificateChainErrors) {
foreach (X509ChainStatus status in chain.ChainStatus) {
if (status.Status != X509ChainStatusFlags.RevocationStatusUnknown) {
return false;
}
}
return true;
}
return false;
};
关于.net - cert 和 mozroots 的 Mono 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3285489/
我在新安装的 12.04 LTS 上使用以下命令集。 sudo apt-get install -qq python-software-properties sudo add-apt-reposito
我在我的单声道虚拟机上使用这个命令 sudo mozroots --import --sync 它似乎正在从 this site 获得证书. 然后我尝试连接到我的 ssl 站点,但我收到证书无效的异常
我是一名优秀的程序员,十分优秀!