This file is indexed.

/usr/include/botan/eng_amd64.h is in libbotan1.8-dev 1.8.13-4.

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
/**
* x86-64 Assembly Implementation Engines
* (C) 1999-2008 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/

#ifndef BOTAN_AMD64_ASM_ENGINE_H__
#define BOTAN_AMD64_ASM_ENGINE_H__

#include <botan/engine.h>

namespace Botan {

class BOTAN_DLL AMD64_Assembler_Engine : public Engine
   {
   public:
      std::string provider_name() const { return "amd64"; }
   private:
      HashFunction* find_hash(const SCAN_Name& reqeust,
                              Algorithm_Factory&) const;
   };

}

#endif