aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/sha.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-12-05 21:40:17 +0100
committerJelmer Vernooij <jelmer@samba.org>2006-12-05 21:40:17 +0100
commitd8d63a27dcfd38245927af95521b6f8918b23795 (patch)
tree75e4675b12970db6645c087ab75ec35c1b1ba9fd /protocols/sha.h
parentf4aa393b221dcc709f189ed04945ee67e956872a (diff)
parent55078f59c8e9f52f1d10bed55511e5e58ec3e53b (diff)
[merge] wilmer
Diffstat (limited to 'protocols/sha.h')
-rw-r--r--protocols/sha.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/protocols/sha.h b/protocols/sha.h
deleted file mode 100644
index e8152b1b..00000000
--- a/protocols/sha.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __SHA_H__
-#define __SHA_H__
-
-#include <gmodule.h>
-
-G_MODULE_EXPORT int strprintsha(char *dest, int *hashval);
-
-typedef struct {
- guint32 H[5];
- guint32 W[80];
- int lenW;
- guint32 sizeHi,sizeLo;
-} SHA_CTX;
-
-G_MODULE_EXPORT void shaInit(SHA_CTX *ctx);
-G_MODULE_EXPORT void shaUpdate(SHA_CTX *ctx, unsigned char *dataIn, int len);
-G_MODULE_EXPORT void shaFinal(SHA_CTX *ctx, unsigned char hashout[20]);
-G_MODULE_EXPORT void shaBlock(unsigned char *dataIn, int len, unsigned char hashout[20]);
-G_MODULE_EXPORT char *shahash(char *str);
-
-#endif