From 79a3ba7fa3cd23b31ea43007899ed79f181d4faf Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 8 Feb 2013 20:02:58 +0100 Subject: [PATCH] =?UTF-8?q?Document=20=E2=80=98hashString=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/manual/builtins.xml | 12 ++++++++++++ doc/manual/release-notes.xml | 14 ++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/doc/manual/builtins.xml b/doc/manual/builtins.xml index 9f5f4438ce..b75f58e21f 100644 --- a/doc/manual/builtins.xml +++ b/doc/manual/builtins.xml @@ -302,6 +302,18 @@ stdenv.mkDerivation { + builtins.hashString + type s + + Return a base-16 representation of the + cryptographic hash of string s. The + hash algorithm specified by type must + be one of "md5", "sha1" or + "sha256". + + + + builtins.head list diff --git a/doc/manual/release-notes.xml b/doc/manual/release-notes.xml index e7e9bf3c5b..6f81e7223e 100644 --- a/doc/manual/release-notes.xml +++ b/doc/manual/release-notes.xml @@ -6,6 +6,20 @@ + + +
Release 1.4 (TBA) + + + + New built-in function: + builtins.hashString. + + + +
+ +
Release 1.3 (January 4, 2013)