This file is indexed.

/usr/include/gwenhywfar4/gwenhywfar/cryptmgrkeys.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
/***************************************************************************
    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_CRYPTMGR_KEYS_H
#define GWEN_CRYPTMGR_CRYPTMGR_KEYS_H


#include <gwenhywfar/cryptmgr.h>
#include <gwenhywfar/cryptkey.h>

#ifdef __cplusplus
extern "C" {
#endif


GWENHYWFAR_API
GWEN_CRYPTMGR *GWEN_CryptMgrKeys_new(const char *localName,
                                     GWEN_CRYPT_KEY *localKey,
                                     const char *peerName,
                                     GWEN_CRYPT_KEY *peerKey,
                                     int ownKeys);

GWENHYWFAR_API
void GWEN_CryptMgrKeys_SetPeerKey(GWEN_CRYPTMGR *mgr,
                                  GWEN_CRYPT_KEY *peerKey,
                                  int ownKey);


#ifdef __cplusplus
}
#endif

#endif