summaryrefslogtreecommitdiffstats
path: root/chksum.h
diff options
context:
space:
mode:
Diffstat (limited to 'chksum.h')
-rw-r--r--chksum.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chksum.h b/chksum.h
index 089d784e..6c5f1312 100644
--- a/chksum.h
+++ b/chksum.h
@@ -27,8 +27,14 @@
val sha256_stream(val stream, val nbytes, val buf);
val sha256(val obj, val buf);
+val sha256_begin(void);
+val sha256_hash(val ctx, val obj);
+val sha256_end(val ctx, val buf);
val crc32_stream(val stream, val nbytes);
val crc32(val obj);
val md5_stream(val stream, val nbytes, val buf);
val md5(val obj, val buf_in);
+val md5_begin(void);
+val md5_hash(val ctx, val obj);
+val md5_end(val ctx, val buf);
void chksum_init(void);