diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-06-03 04:57:53 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-06-03 17:27:35 +0200 |
commit | 0b70f7d557181febd80b16c8e3a03887df3871af (patch) | |
tree | a37857074f22dd26ed787c80e2476e4e3bc126dd | |
parent | 82d3ed3b5b85438174996ccc4f1514622a05ee4f (diff) | |
download | gnu-guix-0b70f7d557181febd80b16c8e3a03887df3871af.tar gnu-guix-0b70f7d557181febd80b16c8e3a03887df3871af.tar.gz |
gnu: libgcrypt: Update to 1.7.7.
This release includes two bug-fixes:
- Fix possible timing attack on EdDSA session key.
- Fix long standing bug in secure memory implementation which could
lead to a segv on free. [bug#3027]
* gnu/packages/gnupg.scm (libgcrypt): Update to 1.7.7.
-rw-r--r-- | gnu/packages/gnupg.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index d12304a8eb..e901dba2c2 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -82,14 +82,14 @@ Daemon and possibly more in the future.") (define-public libgcrypt (package (name "libgcrypt") - (version "1.7.6") + (version "1.7.7") (source (origin (method url-fetch) (uri (string-append "mirror://gnupg/libgcrypt/libgcrypt-" version ".tar.bz2")) (sha256 (base32 - "1g05prhgqw4ryd0w433q8nhds0h93kf47hfjagi2r7dghkpaysk2")))) + "16ndaj93asw122mwjz172x2ilpm03w1yp5mqcrp3xslk0yx5xf5r")))) (build-system gnu-build-system) (propagated-inputs `(("libgpg-error-host" ,libgpg-error))) |