summary refs log tree commit diff stats
path: root/src/common/checksum.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/checksum.h')
-rw-r--r--src/common/checksum.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/checksum.h b/src/common/checksum.h
new file mode 100644
index 00000000..1d5d62e3
--- /dev/null
+++ b/src/common/checksum.h
@@ -0,0 +1,6 @@
+#include <openssl/sha.h>
+#define BUFSIZE 32768
+
+void sha256_hash_string (unsigned char hash[SHA256_DIGEST_LENGTH], char outputBuffer[65]);
+void sha256 (char *string, char outputBuffer[65]);
+int sha256_file (char *path, char outputBuffer[65]);