aboutsummaryrefslogtreecommitdiffstats
path: root/resources/privatekey_for_testing.key
Commit message (Collapse)AuthorAgeFilesLines
* tests/net: Update testing cert.Emilio Cobos Álvarez2017-12-241-26/+26
|
* Implement HSTS fetch stepRaghav2016-12-291-0/+28
Implemented step nine of the main fetch. If current URL scheme is 'HTTP' and current URL's host is domain and if current URL's host matched with Known HSTS Host Domain Name Matching results in either a superdomain match with an asserted includeSubDomains directive or a congruent match then we change request scheme to 'https'. This change has been made in method.rs A test case to validate this has been added in fetch.rs. For asserting https scheme, a https localhost was required. For this purpose I have created a self-signed certificate and refactored fetch-context and connector.rs to programmatically trust this certificate for running this test case.