]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/mifareutil.h
a75d0d326ba0f9c78fc96487e578c02feb08ce3d
1 //-----------------------------------------------------------------------------
3 // Many authors, that makes it possible
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // code for work with mifare cards.
10 //-----------------------------------------------------------------------------
14 #define CRYPT_REQUEST 2
18 int mifare_classic_auth(struct Crypto1State
*pcs
, uint32_t uid
, \
19 uint8_t blockNo
, uint8_t keyType
, uint64_t ui64Key
, uint64_t isNested
);
20 int mifare_classic_readblock(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
);
21 int mifare_classic_writeblock(struct Crypto1State
*pcs
, uint32_t uid
, uint8_t blockNo
, uint8_t *blockData
);
22 int mifare_classic_halt(struct Crypto1State
*pcs
, uint32_t uid
);