This file is indexed.

/usr/include/android/libdex/sha1.h is in android-libdex-dev 7.0.0+r33-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
/*
 * See "sha1.cpp" for author info.
 */
#ifndef LIBDEX_SHA1_H_
#define LIBDEX_SHA1_H_

struct SHA1_CTX {
    unsigned long state[5];
    unsigned long count[2];
    unsigned char buffer[64];
};

#define HASHSIZE 20

void SHA1Init(SHA1_CTX* context);
void SHA1Update(SHA1_CTX* context, const unsigned char* data,
    unsigned long len);
void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX* context);

#endif  // LIBDEX_SHA1_H_