20 #define MD5_BLOCK_LENGTH 64
21 #define MD5_DIGEST_LENGTH 16
22 #define MD5_DIGEST_STRING_LENGTH (MD5_DIGEST_LENGTH * 2 + 1)
24 typedef struct MD5Context {
27 u_int8_t buffer[MD5_BLOCK_LENGTH];
30 void MD5Init(MD5_CTX *);
31 void MD5Update(MD5_CTX *,
const u_int8_t *,
size_t)
32 __attribute__((__bounded__(__string__,2,3)));
33 void MD5Pad(MD5_CTX *);
34 void MD5Final(u_int8_t [MD5_DIGEST_LENGTH], MD5_CTX *)
35 __attribute__((__bounded__(__minbytes__,1,MD5_DIGEST_LENGTH)));
36 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])
37 __attribute__((__bounded__(__minbytes__,1,4)))
38 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
39 char *MD5End(MD5_CTX *,
char *)
40 __attribute__((__bounded__(__minbytes__,2,MD5_DIGEST_STRING_LENGTH)));
41 char *MD5File(const
char *,
char *)
42 __attribute__((__bounded__(__minbytes__,2,MD5_DIGEST_STRING_LENGTH)));
43 char *MD5FileChunk(const
char *,
char *, off_t, off_t)
44 __attribute__((__bounded__(__minbytes__,2,MD5_DIGEST_STRING_LENGTH)));
45 char *MD5Data(const u_int8_t *,
size_t,
char *)
46 __attribute__((__bounded__(__string__,1,2)))
47 __attribute__((__bounded__(__minbytes__,3,MD5_DIGEST_STRING_LENGTH)));