summaryrefslogtreecommitdiff
path: root/include/sha1.h
diff options
context:
space:
mode:
authorpixel <pixel>2007-06-11 11:29:16 +0000
committerpixel <pixel>2007-06-11 11:29:16 +0000
commite1953bb532fdcb7b629ab10cdc86f0253874d0fa (patch)
tree501f48952593d4855cb8ba5b030269ddf089c1dd /include/sha1.h
parent9db92074f0a05b2b2e34f960b12c1fb64906131b (diff)
Adding missing header files.
Diffstat (limited to 'include/sha1.h')
-rw-r--r--include/sha1.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/sha1.h b/include/sha1.h
new file mode 100644
index 0000000..11b3cbd
--- /dev/null
+++ b/include/sha1.h
@@ -0,0 +1,32 @@
+#ifndef _SHA1_H
+#define _SHA1_H
+
+#ifndef uint8
+#define uint8 unsigned char
+#endif
+
+#ifndef uint32
+#define uint32 unsigned long int
+#endif
+
+typedef struct
+{
+ uint32 total[2];
+ uint32 state[5];
+ uint8 buffer[64];
+}
+sha1_context;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void sha1_starts( sha1_context *ctx );
+void sha1_update( sha1_context *ctx, uint8 *input, uint32 length );
+void sha1_finish( sha1_context *ctx, uint8 digest[20] );
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* sha1.h */