/usr/include/gwenhywfar4/gwenhywfar/ctplugin_be.h is in libgwenhywfar60-dev 4.10.0beta-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 | /***************************************************************************
$RCSfile$
-------------------
cvs : $Id: crypttoken.h 1113 2007-01-10 09:14:16Z martin $
begin : Wed Mar 16 2005
copyright : (C) 2005 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* Please see toplevel file COPYING for license details *
***************************************************************************/
#ifndef GWEN_CRYPT_TOKEN_PLUGIN_BE_H
#define GWEN_CRYPT_TOKEN_PLUGIN_BE_H
#include <gwenhywfar/ctplugin.h>
typedef GWEN_CRYPT_TOKEN* GWENHYWFAR_CB
(*GWEN_CRYPT_TOKEN_PLUGIN_CREATETOKEN_FN)(GWEN_PLUGIN *pl,
const char *name);
typedef int GWENHYWFAR_CB
(*GWEN_CRYPT_TOKEN_PLUGIN_CHECKTOKEN_FN)(GWEN_PLUGIN *pl,
GWEN_BUFFER *name);
#ifdef __cplusplus
extern "C" {
#endif
GWENHYWFAR_API
GWEN_PLUGIN *GWEN_Crypt_Token_Plugin_new(GWEN_PLUGIN_MANAGER *mgr,
GWEN_CRYPT_TOKEN_DEVICE devType,
const char *typeName,
const char *fileName);
GWENHYWFAR_API
GWEN_CRYPT_TOKEN_PLUGIN_CREATETOKEN_FN GWEN_Crypt_Token_Plugin_SetCreateTokenFn(GWEN_PLUGIN *pl,
GWEN_CRYPT_TOKEN_PLUGIN_CREATETOKEN_FN fn);
GWENHYWFAR_API
GWEN_CRYPT_TOKEN_PLUGIN_CHECKTOKEN_FN GWEN_Crypt_Token_Plugin_SetCheckTokenFn(GWEN_PLUGIN *pl,
GWEN_CRYPT_TOKEN_PLUGIN_CHECKTOKEN_FN fn);
#ifdef __cplusplus
}
#endif
#endif
|