aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/subresource_integrity.rs
Commit message (Collapse)AuthorAgeFilesLines
* clippy: Fix warnings in `components/net` (#31626)eri2024-03-131-4/+4
| | | | | * clippy: fix warnings in `components/net` * fix: review comments
* clippy: fix warnings in components/net (#31564)eri2024-03-101-11/+9
| | | | | | | * clippy: fix some warnings in components/net * fix: review comments * fix: tidy
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-3/+4
| | | | | * strict imports formatting * Reformat all imports
* bump base64 from 0.10 to 0.21 (#29804)Tuna2023-08-021-2/+2
| | | | | | | | | * bump base64 from 0.10 to 0.21 * Fix configuration of bitflags --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* Switch to the sha2 crate for SRI digests.Fabrice Desré2023-02-241-9/+11
| | | | This removes one (simple) use of OpenSSL
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Reorder importsPyfisch2018-11-061-1/+1
|
* Rustfmt net cratePyfisch2018-11-031-25/+29
|
* Update hyper to 0.12Bastien Orivel2018-11-011-2/+3
|
* Fix commonmark Markdown warnings in docs, part 1Matt Brubeck2017-10-171-7/+7
| | | | | | | | Fixes warnings from rust-lang/rust#44229 when `--enable-commonmark` is passed to rustdoc. This is mostly a global find-and-replace for bare URIs on lines by themselves in doc comments.
* Use hash2 instead of deprecated hashKsbugbee2017-05-081-2/+2
| | | | | | Removed X's from PULL_REQUEST_TEMPLATE.md Commented changes
* Update Hyper and OpenSSLddh2017-03-311-5/+5
|
* Replace use of rustc_serialize::base64 by base64Anthony Ramine2017-03-261-2/+2
|
* Implement Subresource Integritymrnayak2017-01-081-0/+177
Implemented response validation part of https://w3c.github.io/webappsec-subresource-integrity/. Implemented step eighteen of the main fetch. If a request has integrity metadata, then following steps are performed *Wait for response body *If the response does not have a termination reason and response does not match request’s integrity metadata, set response to a network error.# Please enter the commit message for your changes. Lines starting