summaryrefslogtreecommitdiff
path: root/hash/ed2k.h
diff options
context:
space:
mode:
authorzyp <zyp@localhost>2006-10-27 13:30:01 +0200
committerzyp <zyp@localhost>2006-10-27 13:30:01 +0200
commite7372290e93e2fa26237e2ecbe257c8ccc4dce30 (patch)
tree5e5e1bff5b9f3191e0dea2d7bdc9a55a82345542 /hash/ed2k.h
parent802668818e930d91c37f8107e4c8822bd3ebdfac (diff)
[project @ zyp-20061027113001-b3ca581e0efa4fa6]
[project @ 65] This should not be here.
Diffstat (limited to 'hash/ed2k.h')
-rw-r--r--hash/ed2k.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/hash/ed2k.h b/hash/ed2k.h
deleted file mode 100644
index 1be7302..0000000
--- a/hash/ed2k.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef _ED2K_H_
-#define _ED2K_H_
-
-#include <openssl/md4.h>
-
-class Ed2k {
- private:
- MD4_CTX md4_partial;
- MD4_CTX md4_final;
- unsigned int size_total;
- public:
- Ed2k();
- void update(const char* data, int length);
- char* digest();
-};
-
-#endif // _ED2K_H_