1 //-----------------------------------------------------------------------------
2 // Frederik Möllers - August 2012
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Routines to support the German eletronic "Personalausweis" (ID card)
9 //-----------------------------------------------------------------------------
15 #include "iso14443a.h"
16 #include "iso14443b.h"
18 // this struct is used by EPA_Parse_CardAccess and contains info about the
19 // PACE protocol supported by the chip
24 } pace_version_info_t
;
26 // note: EPA_PACE_Collect_Nonce and EPA_PACE_Replay are declared in apps.h
30 size_t EPA_Parse_CardAccess(uint8_t *data
,
32 pace_version_info_t
*pace_info
);
33 int EPA_Read_CardAccess(uint8_t *buffer
, size_t max_length
);
36 // PACE related functions
37 int EPA_PACE_MSE_Set_AT(pace_version_info_t pace_version_info
, uint8_t password
);
38 int EPA_PACE_Get_Nonce(uint8_t requested_length
, uint8_t *nonce
);