summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/md4.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/pppd/md4.h')
-rw-r--r--cpukit/pppd/md4.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/cpukit/pppd/md4.h b/cpukit/pppd/md4.h
index 80e8f9a2ac..9f2187d866 100644
--- a/cpukit/pppd/md4.h
+++ b/cpukit/pppd/md4.h
@@ -16,13 +16,14 @@
# endif
#endif
+#include <stdint.h>
/* MDstruct is the data structure for a message digest computation.
*/
typedef struct {
- unsigned int buffer[4]; /* Holds 4-word result of MD computation */
- unsigned char count[8]; /* Number of bits processed so far */
- unsigned int done; /* Nonzero means MD computation finished */
+ uint32_t buffer[4]; /* Holds 4-word result of MD computation */
+ uint8_t count[8]; /* Number of bits processed so far */
+ uint32_t done; /* Nonzero means MD computation finished */
} MD4_CTX;
/* MD4Init(MD4_CTX *)