This file is indexed.

/usr/include/gwenhywfar4/gwenhywfar/crypthead.h is in libgwenhywfar-core-dev 4.15.3-5+b1.

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
/***************************************************************************
    begin       : Mon Dec 01 2008
    copyright   : (C) 2008 by Martin Preuss
    email       : martin@libchipcard.de

 ***************************************************************************
 *          Please see toplevel file COPYING for license details           *
 ***************************************************************************/


#ifndef GWEN_CRYPTMGR_CRYPTHEAD_H
#define GWEN_CRYPTMGR_CRYPTHEAD_H

#include <gwenhywfar/list1.h>
#include <gwenhywfar/buffer.h>


#ifdef __cplusplus
extern "C" {
#endif


typedef struct GWEN_CRYPTHEAD GWEN_CRYPTHEAD;
GWEN_LIST_FUNCTION_LIB_DEFS(GWEN_CRYPTHEAD, GWEN_CryptHead, GWENHYWFAR_API)


GWENHYWFAR_API
GWEN_CRYPTHEAD *GWEN_CryptHead_new(void);

GWENHYWFAR_API
void GWEN_CryptHead_free(GWEN_CRYPTHEAD *ch);

GWENHYWFAR_API
GWEN_CRYPTHEAD *GWEN_CryptHead_fromBuffer(const uint8_t *p, uint32_t l);

GWENHYWFAR_API
int GWEN_CryptHead_toBuffer(const GWEN_CRYPTHEAD *ch, GWEN_BUFFER *buf, uint8_t tagType);

GWENHYWFAR_API
const char *GWEN_CryptHead_GetKeyName(const GWEN_CRYPTHEAD *ch);

GWENHYWFAR_API
void GWEN_CryptHead_SetKeyName(GWEN_CRYPTHEAD *ch, const char *s);

GWENHYWFAR_API
int GWEN_CryptHead_GetKeyNumber(const GWEN_CRYPTHEAD *ch);

GWENHYWFAR_API
void GWEN_CryptHead_SetKeyNumber(GWEN_CRYPTHEAD *ch, int i);

GWENHYWFAR_API
int GWEN_CryptHead_GetKeyVersion(const GWEN_CRYPTHEAD *ch);

GWENHYWFAR_API
void GWEN_CryptHead_SetKeyVersion(GWEN_CRYPTHEAD *ch, int i);

GWENHYWFAR_API
int GWEN_CryptHead_GetCryptProfile(const GWEN_CRYPTHEAD *ch);

GWENHYWFAR_API
void GWEN_CryptHead_SetCryptProfile(GWEN_CRYPTHEAD *ch, int i);

GWENHYWFAR_API
const uint8_t *GWEN_CryptHead_GetKeyPtr(const GWEN_CRYPTHEAD *ch);

GWENHYWFAR_API
uint32_t GWEN_CryptHead_GetKeyLen(const GWEN_CRYPTHEAD *ch);

GWENHYWFAR_API
void GWEN_CryptHead_SetKey(GWEN_CRYPTHEAD *ch, const uint8_t *p, uint32_t l);


#ifdef __cplusplus
}
#endif


#endif