summaryrefslogtreecommitdiff
path: root/md5.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2005-10-11 19:05:28 +0200
committerNiels Möller <nisse@lysator.liu.se>2005-10-11 19:05:28 +0200
commite09f91fc08e5a26fb959f2e62c5dcfd88a37159e (patch)
treefce0fe1ff83dacef066e415fa6b96568455b85f8 /md5.h
parentc902faf7db4168414ef0deac5e49cd0c8bd86b3f (diff)
downloadnettle-e09f91fc08e5a26fb959f2e62c5dcfd88a37159e.tar.gz
(_nettle_md5_compress): New file and new function.
Rev: src/nettle/md5-compress.c:1.1 Rev: src/nettle/md5.h:1.8
Diffstat (limited to 'md5.h')
-rw-r--r--md5.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/md5.h b/md5.h
index dc7c89a0..c06c2288 100644
--- a/md5.h
+++ b/md5.h
@@ -60,4 +60,9 @@ md5_digest(struct md5_ctx *ctx,
unsigned length,
uint8_t *digest);
+/* Internal compression function. STATE points to 4 uint32_t words,
+ and DATA points to 64 bytes of input data, possibly unaligned. */
+void
+_nettle_md5_compress(uint32_t *state, const uint8_t *data);
+
#endif /* NETTLE_MD5_H_INCLUDED */