]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
crypto: drbg - HMAC-SHA1 DRBG has crypto strength of 128 bits
authorStephan Mueller <smueller@chronox.de>
Sun, 6 Jul 2014 00:26:37 +0000 (02:26 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 8 Jul 2014 13:18:25 +0000 (21:18 +0800)
The patch corrects the security strength of the HMAC-SHA1 DRBG to 128
bits. This strength defines the size of the seed required for the DRBG.
Thus, the patch lowers the seeding requirement from 256 bits to 128 bits
for HMAC-SHA1.

Signed-off-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/drbg.c

index a76b3cb03cf4e55074a9db229584d2a66a701cc4..84478cb8d02a721b231ddc9544ef1f27d9dba52b 100644 (file)
@@ -184,7 +184,7 @@ static const struct drbg_core drbg_cores[] = {
 #endif /* CONFIG_CRYPTO_DRBG_HASH */
 #ifdef CONFIG_CRYPTO_DRBG_HMAC
        {
-               .flags = DRBG_HMAC | DRBG_STRENGTH256,
+               .flags = DRBG_HMAC | DRBG_STRENGTH128,
                .statelen = 20, /* block length of cipher */
                .max_addtllen = 35,
                .max_bits = 19,