Add a structure definition to the MD* Contexts, so that cvs can use

the standard libmd version of MD5 instead of it's own seperate copy..
This commit is contained in:
Peter Wemm 1995-12-11 02:18:22 +00:00
parent 41ae2b9560
commit c60e216884
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12762
4 changed files with 4 additions and 4 deletions

View File

@ -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 */

View File

@ -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 */

View File

@ -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 */

View File

@ -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 */