Generalise OCSP I/O functions to support dowloading of other ASN1
[oweals/openssl.git] / crypto / md5 / md5.h
index d8c52345ded5da6ce794b90476f34dfdb5bd7677..541cc925feb0b3a7abbed5df055915380d6cadaf 100644 (file)
@@ -60,6 +60,7 @@
 #define HEADER_MD5_H
 
 #include <openssl/e_os2.h>
+#include <stddef.h>
 
 #ifdef  __cplusplus
 extern "C" {
@@ -104,6 +105,9 @@ typedef struct MD5state_st
        unsigned int num;
        } MD5_CTX;
 
+#ifdef OPENSSL_FIPS
+int private_MD5_Init(MD5_CTX *c);
+#endif
 int MD5_Init(MD5_CTX *c);
 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
 int MD5_Final(unsigned char *md, MD5_CTX *c);