This file is indexed.

/usr/include/kashmir/system/ccmd5.h is in libkashmir-dev 0.0~git20150805.0.2f3913f+dfsg3-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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// ccmd5.h -- hash algorithm described in IETF RFC 1321
//            Apple's Common Crypto implementation

// Copyright (C) 2013 Kenneth Laskoski

/** @file ccmd5.h
    @brief Apple's Common Crypto implementation of md5 algorithm
    @author Copyright (C) 2013 Kenneth Laskoski
*/

#ifndef KL_CCMD5_H 
#define KL_CCMD5_H 

#include "../md5_gen.h"
#include "../unique.h"

#include <stdexcept>

#include <CommonCrypto/CommonDigest.h>

namespace kashmir {
namespace system {

class ccmd5 : public md5::engine<ccmd5>, unique<ccmd5>
{
    CC_MD5_CTX ctx;

public:
    ccmd5() { CC_MD5_Init(&ctx); }

    void update(const char *const source, std::size_t count)
    {
        CC_MD5_Update(&ctx, reinterpret_cast<const void *const>(source), count);
    }

    md5_t operator()()
    {
        md5_t data;
        CC_MD5_Final(reinterpret_cast<unsigned char *const>(&data), &ctx);
        return data;
    }
};

}}

#endif