diff options
Diffstat (limited to 'libopkg/md5.h')
-rw-r--r-- | libopkg/md5.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libopkg/md5.h b/libopkg/md5.h index e89c62e..3e6e652 100644 --- a/libopkg/md5.h +++ b/libopkg/md5.h @@ -19,7 +19,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _MD5_H -#define _MD5_H 1 +#define _MD5_H #include <stdio.h> #include <stdint.h> @@ -100,13 +100,11 @@ extern void __md5_process_bytes (const void *buffer, size_t len, ASCII representation of the message digest. */ extern void *__md5_finish_ctx (struct md5_ctx *ctx, void *resbuf) __THROW; - /* Put result from CTX in first 16 bytes following RESBUF. The result is always in little endian byte order, so that a byte-wise output yields to the wanted ASCII representation of the message digest. */ extern void *__md5_read_ctx (const struct md5_ctx *ctx, void *resbuf) __THROW; - /* Compute MD5 message digest for bytes read from STREAM. The resulting message digest number will be written into the 16 bytes beginning at RESBLOCK. */ @@ -123,4 +121,4 @@ extern void *__md5_buffer (const char *buffer, size_t len, } #endif -#endif /* md5.h */ +#endif /* MD5_H */ |