aboutsummaryrefslogtreecommitdiff
path: root/tools/create_kyradat/md5.h
diff options
context:
space:
mode:
authorJohannes Schickel2007-02-03 14:52:02 +0000
committerJohannes Schickel2007-02-03 14:52:02 +0000
commitde19c946282256074c121b8f893e717574dc9d2f (patch)
treef91372e7f0a8bdf906d67f6f1bbab6bd0d559651 /tools/create_kyradat/md5.h
parenta8ea78ce73f8061201995d012573da46b58d1575 (diff)
downloadscummvm-rg350-de19c946282256074c121b8f893e717574dc9d2f.tar.gz
scummvm-rg350-de19c946282256074c121b8f893e717574dc9d2f.tar.bz2
scummvm-rg350-de19c946282256074c121b8f893e717574dc9d2f.zip
Adding create_kyradat here now.
svn-id: r25349
Diffstat (limited to 'tools/create_kyradat/md5.h')
-rw-r--r--tools/create_kyradat/md5.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/create_kyradat/md5.h b/tools/create_kyradat/md5.h
new file mode 100644
index 0000000000..c945684d83
--- /dev/null
+++ b/tools/create_kyradat/md5.h
@@ -0,0 +1,40 @@
+/* Scumm Tools
+ * Copyright (C) 2004-2006 The ScummVM Team
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL: https://scummvm.svn.sourceforge.net/svnroot/scummvm/tools/trunk/utils/md5.h $
+ * $Id: md5.h 23138 2006-06-15 15:44:06Z h00ligan $
+ *
+ */
+
+#ifndef COMMON_MD5_H
+#define COMMON_MD5_H
+
+#include "util.h"
+
+typedef struct {
+ uint32 total[2];
+ uint32 state[4];
+ uint8 buffer[64];
+} md5_context;
+
+void md5_starts(md5_context *ctx);
+void md5_update(md5_context *ctx, const uint8 *input, uint32 length);
+void md5_finish(md5_context *ctx, uint8 digest[16]);
+
+bool md5_file(const char *name, uint8 digest[16], uint32 length = 0);
+
+#endif