3

如何使用 java 脚本在 Mozilla 和 Chrome 中安装服务器生成的浏览器证书。我有这个方法

( 
var certData = document.getElementById("certdata").value;
 window.crypto.importUserCertificates(null, certData, false);
 )

但它已经过时并且不起作用。

4

2 回答 2

2

评论中提到的解决方案 - 使用内容类型“application/x-x509-user-cert” -自 2016 年(Chrome 49)以来已停止在 Chrome 中工作。此功能已被弃用。长期的替代方案是使用WebCrypto API或基于它的更高级别的 API,如PKI.js

于 2018-08-15T17:56:03.053 回答
0

你不能。

查看 fortofyapp.com 以了解支持此用例的一些中间件。

于 2018-08-19T13:14:07.973 回答