This file is indexed.

/usr/include/libtorrent/sha1.hpp is in libtorrent-rasterbar-dev 1.1.1-1+b1.

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
/*
SHA-1 C++ conversion

original version:

SHA-1 in C
By Steve Reid <sreid@sea-to-sky.net>
100% Public Domain

changelog at the end of sha1.cpp
*/

#ifndef TORRENT_SHA1_HPP_INCLUDED
#define TORRENT_SHA1_HPP_INCLUDED

#include "libtorrent/config.hpp"
#include <boost/cstdint.hpp>

namespace libtorrent
{

	struct TORRENT_EXTRA_EXPORT sha_ctx
	{
		boost::uint32_t state[5];
		boost::uint32_t count[2];
		boost::uint8_t buffer[64];
	};

	// we don't want these to clash with openssl's libcrypto
	TORRENT_EXTRA_EXPORT void SHA1_init(sha_ctx* context);
	TORRENT_EXTRA_EXPORT void SHA1_update(sha_ctx* context
		, boost::uint8_t const* data
		, boost::uint32_t len);
	TORRENT_EXTRA_EXPORT void SHA1_final(boost::uint8_t* digest, sha_ctx* context);
}

#endif