Reverted.
2002-01-02 Jeffrey Stedfast <fejj@ximian.com> * md5-utils.h: Reverted. svn path=/trunk/; revision=15228
This commit is contained in:
committed by
Jeffrey Stedfast
parent
ae2d0ca936
commit
b0a8f5c028
@ -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
|
||||
|
||||
@ -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]);
|
||||
|
||||
|
||||
@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user