Skip to content

Commit

Permalink
feat: Implement subset of crypto.subtle.importKey which can import a…
Browse files Browse the repository at this point in the history
… JSONWebKey using RSASSA-PKCS1-v1_5 (#472)

Co-authored-by: Trevor Elliott <telliott@fastly.com>
  • Loading branch information
JakeChampion and elliottt committed Apr 9, 2023
1 parent 04f00e8 commit 110e7f4
Show file tree
Hide file tree
Showing 17 changed files with 2,143 additions and 34 deletions.
8 changes: 3 additions & 5 deletions .vscode/c_cpp_properties.json
Expand Up @@ -5,16 +5,14 @@
"includePath": [
"${workspaceFolder}/c-dependencies/spidermonkey/debug/include",
"/opt/wasi-sdk/share/wasi-sysroot/include/",
"${workspaceFolder}/c-dependencies/js-compute-runtime"
"${workspaceFolder}/c-dependencies/js-compute-runtime",
"${workspaceFolder}/c-dependencies/js-compute-runtime/build/openssl-3.0.7/include"
],
"defines": [
"__wasi__"
],
"macFrameworkPath": [
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/opt/wasi-sdk/bin/clang",
"cStandard": "c11",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "clang-x86",
"browse": {
Expand Down
18 changes: 18 additions & 0 deletions .vscode/settings.json
Expand Up @@ -90,6 +90,24 @@
"memory_resource": "cpp",
"numeric": "cpp",
"fastly_world.h": "c"
"__bits": "cpp",
"__verbose_abort": "cpp",
"any": "cpp",
"cfenv": "cpp",
"cinttypes": "cpp",
"codecvt": "cpp",
"complex": "cpp",
"condition_variable": "cpp",
"csignal": "cpp",
"forward_list": "cpp",
"future": "cpp",
"queue": "cpp",
"scoped_allocator": "cpp",
"shared_mutex": "cpp",
"span": "cpp",
"typeindex": "cpp",
"valarray": "cpp",
"variant": "cpp"
},
"git.ignoreLimitWarning": true
}
Expand Down

0 comments on commit 110e7f4

Please sign in to comment.