aboutsummaryrefslogtreecommitdiffstats
path: root/lib/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/md5.h')
-rw-r--r--lib/md5.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/md5.h b/lib/md5.h
index d89f819a97b..db031aac04c 100644
--- a/lib/md5.h
+++ b/lib/md5.h
@@ -122,8 +122,11 @@ extern void *__md5_buffer (const char *buffer, size_t len,
122 void *resblock) __THROW; 122 void *resblock) __THROW;
123 123
124# endif 124# endif
125/* Compute MD5 message digest for bytes read from STREAM. The 125/* Compute MD5 message digest for bytes read from STREAM.
126 resulting message digest number will be written into the 16 bytes 126 STREAM is an open file stream. Regular files are handled more efficiently.
127 The contents of STREAM from its current position to its end will be read.
128 The case that the last operation on STREAM was an 'ungetc' is not supported.
129 The resulting message digest number will be written into the 16 bytes
127 beginning at RESBLOCK. */ 130 beginning at RESBLOCK. */
128extern int __md5_stream (FILE *stream, void *resblock) __THROW; 131extern int __md5_stream (FILE *stream, void *resblock) __THROW;
129 132