From e9e202cfa815433b6fdf1f7582a1eb451d208043 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Thu, 6 Sep 2001 16:25:34 +0000 Subject: [PATCH] include the proper header file --- crypto/rand/rand_lcl.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/crypto/rand/rand_lcl.h b/crypto/rand/rand_lcl.h index feac3b82a5..c69d6a9785 100644 --- a/crypto/rand/rand_lcl.h +++ b/crypto/rand/rand_lcl.h @@ -1,4 +1,4 @@ -/* crypto/rand/md_rand.c */ +/* crypto/rand/rand_lcl.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -129,25 +129,22 @@ #endif #endif +#include #define MD_Update(a,b,c) EVP_DigestUpdate(a,b,c) #define MD_Final(a,b) EVP_DigestFinal(a,b,NULL) #if defined(USE_MD5_RAND) -#include #define MD_DIGEST_LENGTH MD5_DIGEST_LENGTH #define MD_Init(a) EVP_DigestInit(a,EVP_md5()) #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md5()) #elif defined(USE_SHA1_RAND) -#include #define MD_DIGEST_LENGTH SHA_DIGEST_LENGTH #define MD_Init(a) EVP_DigestInit(a,EVP_sha1()) #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_sha1()) #elif defined(USE_MDC2_RAND) -#include #define MD_DIGEST_LENGTH MDC2_DIGEST_LENGTH #define MD_Init(a) EVP_DigestInit(a,EVP_mdc2()) #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_mdc2()) #elif defined(USE_MD2_RAND) -#include #define MD_DIGEST_LENGTH MD2_DIGEST_LENGTH #define MD_Init(a) EVP_DigestInit(a,EVP_md2()) #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md2()) -- 2.25.1