summaryrefslogtreecommitdiffstats
path: root/lib/plugins/Python_hash.h
diff options
context:
space:
mode:
authorMichal Toman <mtoman@redhat.com>2010-10-19 10:57:16 +0200
committerMichal Toman <mtoman@redhat.com>2010-10-19 10:57:16 +0200
commit8ccb8e59a6f295481b1d0b664701bb421b041e28 (patch)
treeb05ba340714831c049dc830c5d6db0b9f313d46f /lib/plugins/Python_hash.h
parent2ba325a217d4d08fb867d1197a89c53f49ab85d5 (diff)
parent41473dbc4a685a4e33debaf2a9103da8bcd6429f (diff)
downloadabrt-8ccb8e59a6f295481b1d0b664701bb421b041e28.tar.gz
abrt-8ccb8e59a6f295481b1d0b664701bb421b041e28.tar.xz
abrt-8ccb8e59a6f295481b1d0b664701bb421b041e28.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'lib/plugins/Python_hash.h')
-rw-r--r--lib/plugins/Python_hash.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/plugins/Python_hash.h b/lib/plugins/Python_hash.h
deleted file mode 100644
index cc1d2c43..00000000
--- a/lib/plugins/Python_hash.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* vi: set sw=4 ts=4: */
-/*
- * md5.c - Compute MD5 checksum of strings according to the
- * definition of MD5 in RFC 1321 from April 1992.
- *
- * Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
- *
- * Copyright (C) 1995-1999 Free Software Foundation, Inc.
- * Copyright (C) 2001 Manuel Novoa III
- * Copyright (C) 2003 Glenn L. McGrath
- * Copyright (C) 2003 Erik Andersen
- *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
- */
-
-#define MD5_RESULT_LEN 16
-
-typedef struct md5_ctx_t {
- uint32_t A;
- uint32_t B;
- uint32_t C;
- uint32_t D;
- uint64_t total;
- uint32_t buflen;
- char buffer[128];
-} md5_ctx_t;
-void md5_begin(md5_ctx_t *ctx);
-void md5_hash(const void *data, size_t length, md5_ctx_t *ctx);
-void md5_end(void *resbuf, md5_ctx_t *ctx);