diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-01-03 04:45:42 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-01-03 04:45:42 +0800 |
commit | ae2d0ca936f9f8995d92bf9553a7750a168a4a95 (patch) | |
tree | 10f890974e2660b792b73e946f256cd6db8559d5 /e-util/md5-utils.h | |
parent | 57a95b0977bdab7030a06090a8ac33d38ce6f4e5 (diff) | |
download | gsoc2013-evolution-ae2d0ca936f9f8995d92bf9553a7750a168a4a95.tar.gz gsoc2013-evolution-ae2d0ca936f9f8995d92bf9553a7750a168a4a95.tar.zst gsoc2013-evolution-ae2d0ca936f9f8995d92bf9553a7750a168a4a95.zip |
Move the struct into md5-utils.c - this is a kludgey hack around the fact
2002-01-02 Jeffrey Stedfast <fejj@ximian.com>
* md5-utils.h: Move the struct into md5-utils.c - this is a
kludgey hack around the fact that NSS also defines
MD5Context. Besides, this should be a private struct anyway.
svn path=/trunk/; revision=15227
Diffstat (limited to 'e-util/md5-utils.h')
-rw-r--r-- | e-util/md5-utils.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/e-util/md5-utils.h b/e-util/md5-utils.h index 08e014e86e..5a7be8a4d2 100644 --- a/e-util/md5-utils.h +++ b/e-util/md5-utils.h @@ -28,13 +28,8 @@ #include <glib.h> -typedef struct { - guint32 buf[4]; - guint32 bits[2]; - guchar in[64]; - gint doByteReverse; -} MD5Context ; +typedef struct _MD5Context MD5Context; void md5_get_digest (const gchar *buffer, gint buffer_size, guchar digest[16]); |