This file is indexed.

/usr/include/lighttpd/rand.h is in lighttpd-dev 1.4.45-1ubuntu3.

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
#ifndef LI_RAND_H_
#define LI_RAND_H_
#include "first.h"

int li_rand_pseudo_bytes (void);
void li_rand_reseed (void);
int li_rand_bytes (unsigned char *buf, int num);
void li_rand_cleanup (void);

#endif