diff options
-rw-r--r-- | lib/libmd/md2.h | 2 | ||||
-rw-r--r-- | lib/libmd/md4.h | 2 | ||||
-rw-r--r-- | lib/libmd/md5.h | 2 | ||||
-rw-r--r-- | sys/sys/md5.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/libmd/md2.h b/lib/libmd/md2.h index 5c343c4..ca94831 100644 --- a/lib/libmd/md2.h +++ b/lib/libmd/md2.h @@ -23,7 +23,7 @@ #ifndef _MD2_H_ #define _MD2_H_ -typedef struct { +typedef struct MD2Context { unsigned char state[16]; /* state */ unsigned char checksum[16]; /* checksum */ unsigned int count; /* number of bytes, modulo 16 */ diff --git a/lib/libmd/md4.h b/lib/libmd/md4.h index 22f7c06..ea4ec8a 100644 --- a/lib/libmd/md4.h +++ b/lib/libmd/md4.h @@ -26,7 +26,7 @@ #ifndef _MD4_H_ #define _MD4_H_ /* MD4 context. */ -typedef struct { +typedef struct MD4Context { unsigned long state[4]; /* state (ABCD) */ unsigned long count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ diff --git a/lib/libmd/md5.h b/lib/libmd/md5.h index f5208c5..da0c116 100644 --- a/lib/libmd/md5.h +++ b/lib/libmd/md5.h @@ -27,7 +27,7 @@ documentation and/or software. #ifndef _MD5_H_ #define _MD5_H_ /* MD5 context. */ -typedef struct { +typedef struct MD5Context { unsigned long state[4]; /* state (ABCD) */ unsigned long count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ diff --git a/sys/sys/md5.h b/sys/sys/md5.h index f5208c5..da0c116 100644 --- a/sys/sys/md5.h +++ b/sys/sys/md5.h @@ -27,7 +27,7 @@ documentation and/or software. #ifndef _MD5_H_ #define _MD5_H_ /* MD5 context. */ -typedef struct { +typedef struct MD5Context { unsigned long state[4]; /* state (ABCD) */ unsigned long count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ |