This file is indexed.

/usr/include/odil/base64.h is in libodil-dev 0.8.0-4build1.

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
38
39
40
41
42
43
44
/*************************************************************************
 * odil - Copyright (C) Universite de Strasbourg
 * Distributed under the terms of the CeCILL-B license, as published by
 * the CEA-CNRS-INRIA. Refer to the LICENSE file or to
 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
 * for details.
 ************************************************************************/

#ifndef _203e7be8_beaa_4d97_94b2_6a0070f158a1
#define _203e7be8_beaa_4d97_94b2_6a0070f158a1

#include <string>

#include "odil/odil.h"

namespace odil
{

namespace base64
{

/// @brief Dictionary of symbols for Base64.
extern ODIL_API std::string const symbols;

/// @brief Mapping of ASCII characters to values of Base64 symbols.
extern ODIL_API std::string const reversed_symbols;

/// @brief Encode a sequence of 8 bits data to Base64.
template<typename TInputIterator, typename TOutputIterator>
void encode(
    TInputIterator begin, TInputIterator end, TOutputIterator destination);

/// @brief Decode a sequence of 8 bits data from Base64.
template<typename TInputIterator, typename TOutputIterator>
void decode(
    TInputIterator begin, TInputIterator end, TOutputIterator destination);

}

}

#include "odil/base64.txx"

#endif // _203e7be8_beaa_4d97_94b2_6a0070f158a1