This file is indexed.

/usr/include/c_icap/md5.h is in libicapapi-dev 1:0.3.4-2.

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
#ifndef CI_MD5_H
#define CI_MD5_H

#include "c-icap.h"

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);

#endif /* !CI_MD5_H */