forked from pool/libgcrypt
Marcus Meissner
0ee4a0f87b
- add support for SP800-90A DRBG (fate#316929, bnc#856312) * patches by Stephan Mueller (http://www.chronox.de/drbg.html): 0001-SP800-90A-Deterministic-Random-Bit-Generator.patch.bz2 0002-Compile-DRBG.patch 0003-Function-definitions-of-interfaces-for-random.c.patch 0004-Invoke-DRBG-from-common-libgcrypt-RNG-code.patch 0005-Function-definitions-for-gcry_control-callbacks.patch 0006-DRBG-specific-gcry_control-requests.patch 0007-User-interface-to-DRBG.patch * only after 13.1 (the patches need libgpg-error 1.13) - drop libgcrypt-fips-allow-legacy.patch (not needed and wasn't applied anyway) OBS-URL: https://build.opensuse.org/request/show/232937 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libgcrypt?expand=0&rev=51
24 lines
612 B
Diff
24 lines
612 B
Diff
From fe272496f0f9e6e12bfa35f6f1c9d05af9feca2c Mon Sep 17 00:00:00 2001
|
|
From: Stephan Mueller <smueller@chronox.de>
|
|
Date: Sat, 8 Mar 2014 23:13:33 +0100
|
|
Subject: [PATCH v3 2/7] Compile DRBG
|
|
To: gcrypt-devel@gnupg.org
|
|
Cc: jeremy.wayne.powell@gmail.com
|
|
|
|
Add the drbg.c file to the Makefile.
|
|
|
|
Signed-off-by: Stephan Mueller <smueller@chronox.de>
|
|
---
|
|
diff --git a/random/Makefile.am b/random/Makefile.am
|
|
index c9d587a..e073fa4 100644
|
|
--- a/random/Makefile.am
|
|
+++ b/random/Makefile.am
|
|
@@ -35,6 +35,7 @@ random.c random.h \
|
|
rand-internal.h \
|
|
random-csprng.c \
|
|
random-fips.c \
|
|
+drbg.c \
|
|
random-system.c \
|
|
rndhw.c
|
|
|