This file is indexed.

/usr/include/nacl/crypto_stream_aes128ctr.h is in libnacl-dev 20110221-4.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
#ifndef crypto_stream_aes128ctr_H
#define crypto_stream_aes128ctr_H

#define crypto_stream_aes128ctr_core2_KEYBYTES 16
#define crypto_stream_aes128ctr_core2_NONCEBYTES 16
#define crypto_stream_aes128ctr_core2_BEFORENMBYTES 1408
#ifdef __cplusplus
#include <string>
extern std::string crypto_stream_aes128ctr_core2(size_t,const std::string &,const std::string &);
extern std::string crypto_stream_aes128ctr_core2_xor(const std::string &,const std::string &,const std::string &);
extern "C" {
#endif
extern int crypto_stream_aes128ctr_core2(unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
extern int crypto_stream_aes128ctr_core2_xor(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
extern int crypto_stream_aes128ctr_core2_beforenm(unsigned char *,const unsigned char *);
extern int crypto_stream_aes128ctr_core2_afternm(unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
extern int crypto_stream_aes128ctr_core2_xor_afternm(unsigned char *,const unsigned char *,unsigned long long,const unsigned char *,const unsigned char *);
#ifdef __cplusplus
}
#endif

#define crypto_stream_aes128ctr crypto_stream_aes128ctr_core2
#define crypto_stream_aes128ctr_xor crypto_stream_aes128ctr_core2_xor
#define crypto_stream_aes128ctr_beforenm crypto_stream_aes128ctr_core2_beforenm
#define crypto_stream_aes128ctr_afternm crypto_stream_aes128ctr_core2_afternm
#define crypto_stream_aes128ctr_xor_afternm crypto_stream_aes128ctr_core2_xor_afternm
#define crypto_stream_aes128ctr_KEYBYTES crypto_stream_aes128ctr_core2_KEYBYTES
#define crypto_stream_aes128ctr_NONCEBYTES crypto_stream_aes128ctr_core2_NONCEBYTES
#define crypto_stream_aes128ctr_BEFORENMBYTES crypto_stream_aes128ctr_core2_BEFORENMBYTES
#define crypto_stream_aes128ctr_IMPLEMENTATION "crypto_stream/aes128ctr/core2"
#ifndef crypto_stream_aes128ctr_core2_VERSION
#define crypto_stream_aes128ctr_core2_VERSION "-"
#endif
#define crypto_stream_aes128ctr_VERSION crypto_stream_aes128ctr_core2_VERSION

#endif