Remove redundant assignment.

This commit is contained in:
Dr. Stephen Henson 2011-08-11 13:22:04 +00:00
parent 37f010e248
commit 7f06921eca

View 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;