2013-02-07 00:03:46 +01:00
|
|
|
let
|
2013-02-08 19:36:23 +01:00
|
|
|
md5 = builtins.hashString "md5";
|
|
|
|
sha1 = builtins.hashString "sha1";
|
|
|
|
sha256 = builtins.hashString "sha256";
|
|
|
|
strings = [ "" "text 1" "text 2" ];
|
2013-02-07 00:03:46 +01:00
|
|
|
in
|
2013-02-08 19:36:23 +01:00
|
|
|
(builtins.map md5 strings) ++ (builtins.map sha1 strings) ++ (builtins.map sha256 strings)
|