summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/md4.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-01 18:15:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-01 18:15:01 +0000
commit300c914c64953e3f27120fc454e75926943badf5 (patch)
tree4e89214ae41d505ee46fe60e04d922b3090976d7 /cpukit/pppd/md4.h
parent2006-09-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-300c914c64953e3f27120fc454e75926943badf5.tar.bz2
*** empty log message ***
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 *)