-
Notifications
You must be signed in to change notification settings - Fork 5.3k
On Browser DOM scenarios use the SubtleCrypto API #49511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
1863d35
[WIP] - Start crypto worker and initialize channel.
AaronRobinsonMSFT d5c4199
Make Emscripten minimizer happy by using getters instead of fields.
AaronRobinsonMSFT 4e2d738
Add new System.Security.Cryptography.Native.Browser library.
AaronRobinsonMSFT 5ec3db7
Initialize WebWorker earlier.
AaronRobinsonMSFT c7e3888
Update logging and be less strict for output buffer size.
AaronRobinsonMSFT 47b5e6c
Focus SHA tests for non-browser and browser DOM scenarios.
AaronRobinsonMSFT 891b23c
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT d4ea7d6
Add missing namespaces to test builds.
AaronRobinsonMSFT 8062a2f
Additional locations for that need the crypto_worker.js file.
AaronRobinsonMSFT 2b38fdd
Add new JS and native binaries... everywhere.
AaronRobinsonMSFT 84dd60b
Reference the correct location for the webworker file.
AaronRobinsonMSFT 36b2f56
Specify the correct native directory path for the JS WebWorker file.
AaronRobinsonMSFT 80087a5
Only enable Crypto WebWorker when running in the browser scenario.
AaronRobinsonMSFT 6a3b8a6
Condition more tests based on platform Crypto support needed.
AaronRobinsonMSFT d78f0e2
Rename crypto_worker.js to dotnet_crypto_worker.js
AaronRobinsonMSFT 2e74b1f
Missing installer directory.
AaronRobinsonMSFT 7eb087d
Style
AaronRobinsonMSFT b04d0cc
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT 925dcc0
Change internal API name to use generic "digest" name instead
AaronRobinsonMSFT 753c57b
Add test for not supported platform crypto WRT SHA
AaronRobinsonMSFT 74a4e7e
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT b217fc4
Browser uses Unix binary builds so removing Windows placeholder.
AaronRobinsonMSFT a95e9d6
Add libSystem.Security.Cryptography.Native.Browser.a for Windows build.
AaronRobinsonMSFT ce6d2b1
More Windows build changes.
AaronRobinsonMSFT 42eac88
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT 55dfe74
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT f777cb3
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT c13a76e
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT f2e28fc
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT c749ab5
Merge remote-tracking branch 'upstream/main' into wasm_crypto
AaronRobinsonMSFT 4c5a3e0
Merge remote-tracking branch 'upstream/main' into wasm_crypto
lewing 44ea919
Merge branch 'main' into wasm_crypto
lewing 742cbc3
Fix the js inclusion logic
lewing 76dd72b
Add libSystem.Globalization.Native explicitly
lewing bc7ec42
Merge branch 'main' into wasm_crypto
jeffhandley 3eb7b2f
Merge branch 'main' into wasm_crypto
jeffhandley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Rename crypto_worker.js to dotnet_crypto_worker.js
- Loading branch information
commit d78f0e235bc13d7f37b8cbfb400f3936156826d2
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ViktorHofer just curious, what is the purpose of this file? From the linked issue, it seems that signing validation happens in an outer ring - in which case what is the purpose of these exclusions. Just curious
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That file predates the outer ring signing validation. @mmitche do you know if the Validate-DotNet outer ring validation honors the SignCheckExclusionFile in our repo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also just saw that the outer ring signing validation is failing and opened https://github.com/dotnet/core-eng/issues/12601 to better understand who tracks that pipeline.