summaryrefslogtreecommitdiff
path: root/common/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/hash.h')
-rw-r--r--common/hash.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/common/hash.h b/common/hash.h
index 09f7646..41371c6 100644
--- a/common/hash.h
+++ b/common/hash.h
@@ -37,26 +37,6 @@
#include "compat.h"
-/*
- * The SHA-1 and MD5 digests here are used for checksums in legacy
- * protocols. We don't use them in cryptographic contexts at all.
- * These particular algorithms would be poor choices for that.
- */
-
-#define P11_HASH_MD5_LEN 16
-
-void p11_hash_md5 (unsigned char *hash,
- const void *input,
- size_t length,
- ...) GNUC_NULL_TERMINATED;
-
-#define P11_HASH_SHA1_LEN 20
-
-void p11_hash_sha1 (unsigned char *hash,
- const void *input,
- size_t length,
- ...) GNUC_NULL_TERMINATED;
-
#define P11_HASH_MURMUR3_LEN 4
void p11_hash_murmur3 (void *hash,