This file is indexed.

/usr/include/kashmir/sha1_gen.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
// sha1_gen.h -- hash algorithm described in FIPS 180-1

// Copyright (C) 2013 Kenneth Laskoski

/** @file sha1_gen.h
    @brief hash algorithm described in FIPS 180-1
    @author Copyright (C) 2013 Kenneth Laskoski
*/

#ifndef KL_SHA1_GEN_H
#define KL_SHA1_GEN_H

#include "sha1.h"

namespace kashmir {
namespace sha1 {

template<class crtp_impl>
class engine
{
    crtp_impl *const self;

public:
    engine<crtp_impl>() : self(static_cast<crtp_impl*>(this)) {}

    void update(const char *const source, std::size_t count)
    {
        self->update(source, count);
    }

    sha1_t operator()() { return (*self)(); }
};

} // namespace kashmir::sha1
} // namespace kashmir

#endif