mirror of
https://github.com/NixOS/nix
synced 2025-07-13 17:10:47 +02:00
Rename "hash" to "hashString" and handle SHA-1
This commit is contained in:
parent
01a5ea9914
commit
52172607cf
3 changed files with 15 additions and 24 deletions
|
@ -1 +1 @@
|
|||
[ "6c69ee7f211c640419d5366cc076ae46" "bb3438fbabd460ea6dbd27d153e2233b" "900a4469df00ccbfd0c145c6d1e4b7953dd0afafadd7534e3a4019e8d38fc663" "ad0387b3bd8652f730ca46d25f9c170af0fd589f42e7f23f5a9e6412d97d7e56" ]
|
||||
[ "d41d8cd98f00b204e9800998ecf8427e" "6c69ee7f211c640419d5366cc076ae46" "bb3438fbabd460ea6dbd27d153e2233b" "da39a3ee5e6b4b0d3255bfef95601890afd80709" "cd54e8568c1b37cf1e5badb0779bcbf382212189" "6d12e10b1d331dad210e47fd25d4f260802b7e77" "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" "900a4469df00ccbfd0c145c6d1e4b7953dd0afafadd7534e3a4019e8d38fc663" "ad0387b3bd8652f730ca46d25f9c170af0fd589f42e7f23f5a9e6412d97d7e56" ]
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
let
|
||||
md5 = builtins.hash "md5";
|
||||
sha256 = builtins.hash "sha256";
|
||||
strings = [ "text 1" "text 2" ];
|
||||
md5 = builtins.hashString "md5";
|
||||
sha1 = builtins.hashString "sha1";
|
||||
sha256 = builtins.hashString "sha256";
|
||||
strings = [ "" "text 1" "text 2" ];
|
||||
in
|
||||
(builtins.map md5 strings) ++ (builtins.map sha256 strings)
|
||||
(builtins.map md5 strings) ++ (builtins.map sha1 strings) ++ (builtins.map sha256 strings)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue