gpt4 book ai didi

javascript - 如何在 Electron 应用程序中导入自签名证书

转载 作者:行者123 更新时间:2023-12-03 12:22:53 26 4
gpt4 key购买 nike

在我的Electron应用程序中,我将访问一个已经为我提供crt文件的https RESTFUL服务器。如何将其导入我的Electron应用程序并验证其安全性?

我检查了Electron的文档。我找到了证书对象的描述:
https://electronjs.org/docs/api/structures/certificate
但是我没有找到对象数据的任何样本以及如何导入和验证它。

现在,我正在使用它绕过它,但是它并不安全:

app.on('certificate-error', (event, webContents, url, error, certificate, 
callback) => {
event.preventDefault();
callback(true);
});

最佳答案

您可以在 Electron 的importCertificate上使用app:https://electronjs.org/docs/api/app#appimportcertificateoptions-callback-linux

例如如果磁盘上有crt文件

app.importCertificate('/path/my.crt', (result) => {
if (result == 0) {
// Success!
}
});

关于javascript - 如何在 Electron 应用程序中导入自签名证书,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57676652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com