Skip to content

Commit 110e7f4

Browse files
feat: Implement subset of crypto.subtle.importKey which can import a JSONWebKey using RSASSA-PKCS1-v1_5 (#472)
Co-authored-by: Trevor Elliott <[email protected]>
1 parent 04f00e8 commit 110e7f4

File tree

17 files changed

+2143
-34
lines changed

17 files changed

+2143
-34
lines changed

.vscode/c_cpp_properties.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,14 @@
55
"includePath": [
66
"${workspaceFolder}/c-dependencies/spidermonkey/debug/include",
77
"/opt/wasi-sdk/share/wasi-sysroot/include/",
8-
"${workspaceFolder}/c-dependencies/js-compute-runtime"
8+
"${workspaceFolder}/c-dependencies/js-compute-runtime",
9+
"${workspaceFolder}/c-dependencies/js-compute-runtime/build/openssl-3.0.7/include"
910
],
1011
"defines": [
1112
"__wasi__"
1213
],
13-
"macFrameworkPath": [
14-
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
15-
],
1614
"compilerPath": "/opt/wasi-sdk/bin/clang",
17-
"cStandard": "c11",
15+
"cStandard": "c17",
1816
"cppStandard": "c++20",
1917
"intelliSenseMode": "clang-x86",
2018
"browse": {

.vscode/settings.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,24 @@
9090
"memory_resource": "cpp",
9191
"numeric": "cpp",
9292
"fastly_world.h": "c"
93+
"__bits": "cpp",
94+
"__verbose_abort": "cpp",
95+
"any": "cpp",
96+
"cfenv": "cpp",
97+
"cinttypes": "cpp",
98+
"codecvt": "cpp",
99+
"complex": "cpp",
100+
"condition_variable": "cpp",
101+
"csignal": "cpp",
102+
"forward_list": "cpp",
103+
"future": "cpp",
104+
"queue": "cpp",
105+
"scoped_allocator": "cpp",
106+
"shared_mutex": "cpp",
107+
"span": "cpp",
108+
"typeindex": "cpp",
109+
"valarray": "cpp",
110+
"variant": "cpp"
93111
},
94112
"git.ignoreLimitWarning": true
95113
}

0 commit comments

Comments
 (0)