Reverted.

2002-01-02  Jeffrey Stedfast  <fejj@ximian.com>

	* md5-utils.h: Reverted.

svn path=/trunk/; revision=15228
This commit is contained in:
Jeffrey Stedfast
2002-01-02 20:48:39 +00:00
committed by Jeffrey Stedfast
parent ae2d0ca936
commit b0a8f5c028
3 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2002-01-02 Jeffrey Stedfast <fejj@ximian.com>
* md5-utils.h: Reverted.
2002-01-02 Jeffrey Stedfast <fejj@ximian.com>
* md5-utils.h: Move the struct into md5-utils.c - this is a

View File

@ -27,13 +27,6 @@
#include <string.h>
#include "md5-utils.h"
struct _MD5Context {
guint32 buf[4];
guint32 bits[2];
guchar in[64];
gint doByteReverse;
};
static void md5_transform (guint32 buf[4], const guint32 in[16]);

View File

@ -29,7 +29,12 @@
#include <glib.h>
typedef struct _MD5Context MD5Context;
typedef struct _MD5Context {
guint32 buf[4];
guint32 bits[2];
guchar in[64];
gint doByteReverse;
} MD5Context;
void md5_get_digest (const gchar *buffer, gint buffer_size, guchar digest[16]);