From 7f06921ecaba171508d643b4a6448827ac6389c7 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Thu, 11 Aug 2011 13:22:04 +0000 Subject: [PATCH] Remove redundant assignment. --- fips/rand/fips_drbg_hash.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fips/rand/fips_drbg_hash.c b/fips/rand/fips_drbg_hash.c index 51db7a41ee..481b356ec6 100644 --- a/fips/rand/fips_drbg_hash.c +++ b/fips/rand/fips_drbg_hash.c @@ -333,12 +333,10 @@ int fips_drbg_hash_init(DRBG_CTX *dctx) switch (dctx->type) { case NID_sha1: - md = EVP_sha1(); dctx->strength = 128; break; case NID_sha224: - md = EVP_sha224(); dctx->strength = 192; break; -- 2.34.1