/usr/include/gwenhywfar4/gwenhywfar/cryptdefs.h is in libgwenhywfar60-dev 4.15.2beta-2build1.
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 | /***************************************************************************
$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_CRYPTDEFS_H
#define GWEN_CRYPT_CRYPTDEFS_H
#include <gwenhywfar/gwenhywfarapi.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
GWEN_Crypt_PinType_Unknown=-1,
GWEN_Crypt_PinType_None=0,
GWEN_Crypt_PinType_Access,
GWEN_Crypt_PinType_Manage
}
GWEN_CRYPT_PINTYPE;
GWENHYWFAR_API GWEN_CRYPT_PINTYPE GWEN_Crypt_PinType_fromString(const char *s);
GWENHYWFAR_API const char *GWEN_Crypt_PinType_toString(GWEN_CRYPT_PINTYPE pt);
typedef enum {
GWEN_Crypt_PinEncoding_Unknown=-1,
GWEN_Crypt_PinEncoding_None=0,
GWEN_Crypt_PinEncoding_Bin,
GWEN_Crypt_PinEncoding_Bcd,
GWEN_Crypt_PinEncoding_Ascii,
GWEN_Crypt_PinEncoding_FPin2
} GWEN_CRYPT_PINENCODING;
GWENHYWFAR_API GWEN_CRYPT_PINENCODING GWEN_Crypt_PinEncoding_fromString(const char *s);
GWENHYWFAR_API const char *GWEN_Crypt_PinEncoding_toString(GWEN_CRYPT_PINENCODING pe);
GWENHYWFAR_API int GWEN_Crypt_TransformPin(GWEN_CRYPT_PINENCODING peSrc,
GWEN_CRYPT_PINENCODING peDst,
unsigned char *buffer,
unsigned int bufLength,
unsigned int *pinLength);
GWENHYWFAR_API int GWEN_Crypt_KeyDataFromText(const char *text,
unsigned char *buffer,
unsigned int bufLength);
GWENHYWFAR_API void GWEN_Crypt_Random(int quality, uint8_t *buffer, uint32_t len);
#ifdef __cplusplus
}
#endif
#endif
|