diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-11-04 16:31:06 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-02 19:37:59 +0200 |
commit | 29d3242e5c428d3b0e8dc9db1c81cd4053e5271c (patch) | |
tree | 9265c393bba91ada32e17f33b0725f5aee5cddd8 /daemon.am | |
parent | 79aa1a83054af1600ba235ddf305337b5df78271 (diff) | |
download | guix-29d3242e5c428d3b0e8dc9db1c81cd4053e5271c.tar guix-29d3242e5c428d3b0e8dc9db1c81cd4053e5271c.tar.gz |
daemon: Support SHA-512 hashes.
Fixes #679.
Note: on x86_64, SHA-512 is considerably faster than SHA-256 (198 MB/s
versus 131 MB/s).
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'daemon.am')
-rw-r--r-- | daemon.am | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -69,7 +69,8 @@ libutil_headers = \ nix/libutil/gcrypt-hash.hh \ nix/libutil/md5.h \ nix/libutil/sha1.h \ - nix/libutil/sha256.h + nix/libutil/sha256.h \ + nix/libutil/sha512.h libutil_a_CPPFLAGS = \ -I$(top_builddir)/nix \ |