summaryrefslogtreecommitdiffstats
path: root/fips/rand/fips_drbg_hash.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-05 15:48:05 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-05 15:48:05 +0000
commit42bd0a6b3c73c71b69967503c0ee0a3598b52655 (patch)
treee1477bf5e29198335e8c7747ec4d28bc881d60ba /fips/rand/fips_drbg_hash.c
parent05e24c87dd1428809d6eaebf754b472a6cb4bb50 (diff)
Update fipssyms.h to keep all symbols in FIPS,fips namespace.
Rename drbg_cprng_test to fips_drbg_cprng_test. Remove rand files from Makefile.fips.
Diffstat (limited to 'fips/rand/fips_drbg_hash.c')
-rw-r--r--fips/rand/fips_drbg_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fips/rand/fips_drbg_hash.c b/fips/rand/fips_drbg_hash.c
index 8b49f33a63..a94170f135 100644
--- a/fips/rand/fips_drbg_hash.c
+++ b/fips/rand/fips_drbg_hash.c
@@ -204,13 +204,13 @@ static int hash_gen(DRBG_CTX *dctx, unsigned char *out, size_t outlen)
if (outlen < dctx->blocklength)
{
FIPS_digestfinal(&hctx->mctx, hctx->vtmp, NULL);
- if (!drbg_cprng_test(dctx, hctx->vtmp))
+ if (!fips_drbg_cprng_test(dctx, hctx->vtmp))
return 0;
memcpy(out, hctx->vtmp, outlen);
return 1;
}
FIPS_digestfinal(&hctx->mctx, out, NULL);
- if (!drbg_cprng_test(dctx, out))
+ if (!fips_drbg_cprng_test(dctx, out))
return 0;
outlen -= dctx->blocklength;
if (outlen == 0)