This file is indexed.

/usr/include/srecord/input/filter/message/gcrypt.h is in libsrecord-dev 1.58-1.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
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
//
// srecord - Manipulate EPROM load files
// Copyright (C) 2009-2011 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation; either version 3 of the License, or (at
// your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

#ifndef SRECORD_INPUT_FILTER_MESSAGE_GCRYPT_H
#define SRECORD_INPUT_FILTER_MESSAGE_GCRYPT_H

#include <srecord/input/filter/message.h>

namespace srecord
{

/**
  * The srecord::input_filter_message_gcrypt class is used to represent a
  * filter that runs the data through one of the hashing algorithms in
  * the gcrypt library.
  *
  * http://freshmeat.net/projects/libgcrypt/
  * http://directory.fsf.org/project/libgcrypt/
  */
class input_filter_message_gcrypt:
    public input_filter_message
{
public:
    /**
      * The destructor.
      */
    virtual ~input_filter_message_gcrypt();

private:
    /**
      * The constructor.  It is private on purpose, use one of the
      * create_* class method instead.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param algo
      *     The algorithm number (private to class).
      * @param hmac
      *     Turn the hash into a HMAC.
      * @param address
      *     Where to place the hash in memory.
      * @param hmac
      *     Add a message authentication code
      */
    input_filter_message_gcrypt(const input::pointer &deeper,
        unsigned long address, int algo, bool hmac);

private:
    /**
      * The create class method is used to create a new dynamically
      * allocated instance of this class.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param algo
      *     The algorithm to be used.  This is for debug.
      *     The actual algorithm numbers are private to the class.
      *     Choose a random number, it will likely segfault.  Seriously.
      * @param address
      *     Where to place the hash in memory.
      * @param hmac
      *     Add a message authentication code
      */
    static pointer create(const input::pointer &deeper, unsigned long address,
        int algo, bool hmac = false);

    /**
      * The algorithm_from_name class method is used to translate an
      * algorithm name into an algorithm number.
      *
      * @param name
      *     The name of the algorithm.
      * @return
      *     an algorithm number.  It does not return if the name is
      *     unknown, it exits with a fatal error message instead.
      */
    static int algorithm_from_name(const char *name);

public:
    /**
      * The create class method is used to create a new dynamically
      * allocated instance of this class.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      * @param algo
      *     The algorithm to be used.  This is for debug.
      *     The actual algorithm numbers are private to the class.
      * @param hmac
      *     Turn the hash into a HMAC.
      */
    static pointer create(const input::pointer &deeper, unsigned long address,
        const char *algo, bool hmac = false);

    /**
      * The create_md5 class method is used to create a new dynamically
      * allocated instance of this class, that calculates MD5 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_md5(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_sha1 class method is used to create a new dynamically
      * allocated instance of this class, that calculates SHA1 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_sha1(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_rmd160 class method is used to create a new dynamically
      * allocated instance of this class, that calculates RMD160 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_rmd160(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_md2 class method is used to create a new dynamically
      * allocated instance of this class, that calculates MD2 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_md2(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_tiger class method is used to create a new dynamically
      * allocated instance of this class, that calculates TIGER/192 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_tiger(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_haval class method is used to create a new dynamically
      * allocated instance of this class, that calculates HAVAL/160 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_haval(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_sha256 class method is used to create a new dynamically
      * allocated instance of this class, that calculates SHA-256 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_sha256(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_sha384 class method is used to create a new dynamically
      * allocated instance of this class, that calculates SHA-384 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_sha384(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_sha512 class method is used to create a new dynamically
      * allocated instance of this class, that calculates SHA-512 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_sha512(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_sha224 class method is used to create a new dynamically
      * allocated instance of this class, that calculates SHA-224 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_sha224(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_md4 class method is used to create a new dynamically
      * allocated instance of this class, that calculates MD4 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_md4(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_crc32 class method is used to create a new dynamically
      * allocated instance of this class, that calculates CRC-32 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_crc32(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_crc32_rfc1510 class method is used to create a new
      * dynamically allocated instance of this class, that calculates
      * CRC32 RFC1510 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_crc32_rfc1510(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_crc24_rfc2440 class method is used to create a new
      * dynamically allocated instance of this class, that calculates
      * CRC24 RFC2440 hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_crc24_rfc2440(const input::pointer &deeper,
        unsigned long address);

    /**
      * The create_whirlpool class method is used to create a new
      * dynamically allocated instance of this class, that calculates
      * WHIRLPOOL hashes.
      *
      * @param deeper
      *     The source of data to be filtered.
      * @param address
      *     Where to place the hash in memory.
      */
    static pointer create_whirlpool(const input::pointer &deeper,
        unsigned long address);

protected:
    // See base class for documentation.
    void process(const memory &input, record &output);

    // See base class for documentation.
    const char *get_algorithm_name() const;

private:
    /**
      * The algo instance variable is used to remember the algorithm
      * number.
      */
    int algo;

    /**
      * The hmac instance variable is used to remember whether or not to
      * turn the hash into a HMAC.
      */
    bool hmac;

    /**
      * The address instance variable is used to remember where to place
      * the hash in memory.
      */
    unsigned long address;

    /**
      * The default constructor.  Do not use.
      */
    input_filter_message_gcrypt();

    /**
      * The copy constructor.  Do not use.
      */
    input_filter_message_gcrypt(const input_filter_message_gcrypt &);

    /**
      * The assignment operator.  Do not use.
      */
    input_filter_message_gcrypt &operator=(const input_filter_message_gcrypt &);
};

};

// vim: set ts=8 sw=4 et :
#endif // SRECORD_INPUT_FILTER_MESSAGE_GCRYPT_H