summaryrefslogtreecommitdiffstats
path: root/isomd5sum/md5.h
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-12-07 15:14:12 -0500
committerJeremy Katz <katzj@redhat.com>2007-12-10 14:55:55 -0500
commit698d8b2001a6ab71e2fddbd945c5e06afcd9f869 (patch)
treef412797d8b048bd9275bc475c66573af9550c05e /isomd5sum/md5.h
parent9045ce465c1cbfc3b02f2bd572b7f387872b36ec (diff)
downloadanaconda-698d8b2001a6ab71e2fddbd945c5e06afcd9f869.tar.gz
anaconda-698d8b2001a6ab71e2fddbd945c5e06afcd9f869.tar.xz
anaconda-698d8b2001a6ab71e2fddbd945c5e06afcd9f869.zip
Remove isomd5sum in favor of standalone version
Diffstat (limited to 'isomd5sum/md5.h')
-rw-r--r--isomd5sum/md5.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/isomd5sum/md5.h b/isomd5sum/md5.h
deleted file mode 100644
index fd4ea0edd..000000000
--- a/isomd5sum/md5.h
+++ /dev/null
@@ -1,26 +0,0 @@
-
-#ifndef MD5_H
-#define MD5_H
-
-#include <sys/types.h>
-
-typedef u_int32_t uint32;
-
-struct MD5Context {
- uint32 buf[4];
- uint32 bits[2];
- unsigned char in[64];
- int doByteReverse;
-};
-
-void MD5_Init(struct MD5Context *);
-void MD5_Update(struct MD5Context *, unsigned const char *, unsigned);
-void MD5_Final(unsigned char digest[16], struct MD5Context *);
-
-/*
- * This is needed to make RSAREF happy on some MS-DOS compilers.
- */
-
-typedef struct MD5Context MD5_CTX;
-
-#endif /* MD5_H */