diff options
Diffstat (limited to 'lib/md5.h')
| -rw-r--r-- | lib/md5.h | 7 |
1 files changed, 5 insertions, 2 deletions
| @@ -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. */ |
| 128 | extern int __md5_stream (FILE *stream, void *resblock) __THROW; | 131 | extern int __md5_stream (FILE *stream, void *resblock) __THROW; |
| 129 | 132 | ||