diff options
Diffstat (limited to 'src/lib/libcrypto/md4/md4_dgst.c')
-rw-r--r-- | src/lib/libcrypto/md4/md4_dgst.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/md4/md4_dgst.c b/src/lib/libcrypto/md4/md4_dgst.c index e0c42e8596..82c2cb2d98 100644 --- a/src/lib/libcrypto/md4/md4_dgst.c +++ b/src/lib/libcrypto/md4/md4_dgst.c | |||
@@ -57,8 +57,9 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include "md4_locl.h" | ||
61 | #include <openssl/opensslv.h> | 60 | #include <openssl/opensslv.h> |
61 | #include <openssl/crypto.h> | ||
62 | #include "md4_locl.h" | ||
62 | 63 | ||
63 | const char MD4_version[]="MD4" OPENSSL_VERSION_PTEXT; | 64 | const char MD4_version[]="MD4" OPENSSL_VERSION_PTEXT; |
64 | 65 | ||
@@ -70,7 +71,7 @@ const char MD4_version[]="MD4" OPENSSL_VERSION_PTEXT; | |||
70 | #define INIT_DATA_C (unsigned long)0x98badcfeL | 71 | #define INIT_DATA_C (unsigned long)0x98badcfeL |
71 | #define INIT_DATA_D (unsigned long)0x10325476L | 72 | #define INIT_DATA_D (unsigned long)0x10325476L |
72 | 73 | ||
73 | int MD4_Init(MD4_CTX *c) | 74 | fips_md_init(MD4) |
74 | { | 75 | { |
75 | memset (c,0,sizeof(*c)); | 76 | memset (c,0,sizeof(*c)); |
76 | c->A=INIT_DATA_A; | 77 | c->A=INIT_DATA_A; |