summaryrefslogtreecommitdiff
path: root/include/sha256.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/sha256.h
parent9db92074f0a05b2b2e34f960b12c1fb64906131b (diff)
Adding missing header files.
Diffstat (limited to 'include/sha256.h')
-rw-r--r--include/sha256.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/sha256.h b/include/sha256.h
new file mode 100644
index 0000000..91b5adc
--- /dev/null
+++ b/include/sha256.h
@@ -0,0 +1,32 @@
+#ifndef _SHA256_H
+#define _SHA256_H
+
+#ifndef uint8
+#define uint8 unsigned char
+#endif
+
+#ifndef uint32
+#define uint32 unsigned long int
+#endif
+
+typedef struct
+{
+ uint32 total[2];
+ uint32 state[8];
+ uint8 buffer[64];
+}
+sha256_context;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void sha256_starts( sha256_context *ctx );
+void sha256_update( sha256_context *ctx, uint8 *input, uint32 length );
+void sha256_finish( sha256_context *ctx, uint8 digest[32] );
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* sha256.h */