使用Azure Blob中的X509证书并在Azure网站中使用它

时间:2015-08-11 19:46:53

标签: asp.net azure x509certificate2

我读了另一篇关于此的帖子,我尝试了答案,但我在天蓝色运行时出错,在本地运行就没问题了。 我无法找到解决方案,从文件中使用certificate.p12。 当我在Azure中运行而不是在本地运行时,我在ObjCert.Import(certData)中出现错误。 谢谢!

    WDS.browser.switchTo.alert()

1 个答案:

答案 0 :(得分:0)

我解决了 替换:

objCert.Import(certData)

通过

X509Certificate2 selfSignedCert = new X509Certificate2(certData, "", X509KeyStorageFlags.MachineKeySet);