Remove redundant assignment.
authorDr. Stephen Henson <steve@openssl.org>
Thu, 11 Aug 2011 13:22:04 +0000 (13:22 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Thu, 11 Aug 2011 13:22:04 +0000 (13:22 +0000)
fips/rand/fips_drbg_hash.c

index 51db7a41ee667a658d853f75346c4c964a830be3..481b356ec6ff3c35f65e164a4237cf8693acf876 100644 (file)
@@ -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;