From 6b65fb4ca2d3210091f5ce1c7e1b0c9822244f87 Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Wed, 20 Feb 2013 18:27:16 +0100 Subject: [PATCH] Cleans code: cosmetic variables alignment --- src/mfoc.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/mfoc.h b/src/mfoc.h index 157b28a..b411670 100644 --- a/src/mfoc.h +++ b/src/mfoc.h @@ -36,36 +36,36 @@ typedef struct { uint32_t median; uint32_t num_distances; uint32_t tolerance; - uint8_t parity[3]; // used for 3 bits of parity information + uint8_t parity[3]; // used for 3 bits of parity information } denonce; // Revealed information about nonce typedef struct { - nfc_target nt; + nfc_target nt; sector *sectors; // Allocate later, we do not know the number of sectors yet - sector e_sector; // Exploit sector + sector e_sector; // Exploit sector uint8_t num_sectors; uint8_t num_blocks; - uint32_t authuid; - bool b4K; + uint32_t authuid; + bool b4K; } mftag; typedef struct { - uint64_t *possibleKeys; - uint32_t size; + uint64_t *possibleKeys; + uint32_t size; } pKeys; typedef struct { - uint64_t *brokenKeys; - uint32_t size; + uint64_t *brokenKeys; + uint32_t size; } bKeys; typedef struct { - nfc_device *pdi; + nfc_device *pdi; } mfreader; typedef struct { - uint64_t key; - int count; + uint64_t key; + int count; } countKeys;