mirror of
https://github.com/NixOS/nix.git
synced 2025-11-12 21:46:01 +01:00
builtin:fetchurl: Enable TLS verification
This is better for privacy and to avoid leaking netrc credentials in a MITM attack, but also the assumption that we check the hash no longer holds in some cases (in particular for impure derivations). Partially reverts5db358d4d7. (cherry picked from commitc04bc17a5a)
This commit is contained in:
parent
6c1ab4d105
commit
183ef8c6ab
1 changed files with 0 additions and 3 deletions
|
|
@ -38,10 +38,7 @@ void builtinFetchurl(
|
|||
|
||||
auto source = sinkToSource([&](Sink & sink) {
|
||||
|
||||
/* No need to do TLS verification, because we check the hash of
|
||||
the result anyway. */
|
||||
FileTransferRequest request(url);
|
||||
request.verifyTLS = false;
|
||||
request.decompress = false;
|
||||
|
||||
auto decompressor = makeDecompressionSink(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue