/usr/include/c_icap/md5.h is in libicapapi-dev 1:0.4.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #ifndef CI_MD5_H
#define CI_MD5_H
#include "c-icap.h"
#ifdef __cplusplus
extern "C"
{
#endif
struct ci_MD5Context {
uint32_t buf[4];
uint32_t bits[2];
unsigned char in[64];
};
typedef struct ci_MD5Context ci_MD5_CTX;
CI_DECLARE_FUNC(void) ci_MD5Init(struct ci_MD5Context *ctx);
CI_DECLARE_FUNC(void) ci_MD5Update(struct ci_MD5Context *ctx, const unsigned char *buf, size_t len);
CI_DECLARE_FUNC(void) ci_MD5Final(unsigned char digest[16], struct ci_MD5Context *ctx);
#ifdef __cplusplus
}
#endif
#endif /* !CI_MD5_H */
|