标签: ssl webview visual-studio-code vscode-extensions
我正在基于CatCoding example开发一个vscode Webview扩展。
我需要使用window.crypto.subtle下的SubtleCrypto库,但是由于上下文不安全,因此subtle是未定义的。
window.isSecureContext是false,根据this question,它导致window.crypto.subtle不确定。
window.isSecureContext
false
有没有一种方法可以在安全的上下文中运行我的webview扩展,因此我将能够访问微妙的库?