]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
fixed spacing
authorroel@libnfc.org <roel@libnfc.org@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Sun, 1 Jul 2012 07:40:26 +0000 (07:40 +0000)
committerroel@libnfc.org <roel@libnfc.org@ef4ab9da-24cd-11de-8aaa-f3a34680c41f>
Sun, 1 Jul 2012 07:40:26 +0000 (07:40 +0000)
tools/mfkey/mfkey.c

index 442403f4d6a2ef874badcb666994ad9d384f6b2c..356517175f8408dc7c70f3b3dab028deb8eb8437 100755 (executable)
@@ -11,8 +11,8 @@ int main (int argc, char *argv[]) {
   uint32_t nr_enc;  // encrypted reader challenge
   uint32_t ar_enc;  // encrypted reader response
   uint32_t at_enc;  // encrypted tag response
-       uint32_t ks2;     // keystream used to encrypt reader response
-       uint32_t ks3;     // keystream used to encrypt tag response
+  uint32_t ks2;     // keystream used to encrypt reader response
+  uint32_t ks3;     // keystream used to encrypt tag response
 
   printf("MIFARE Classic key recovery\n\n");
 
@@ -48,7 +48,7 @@ int main (int argc, char *argv[]) {
 
   // Extract the keystream from the messages
   printf("\nKeystream used to generate {ar} and {at}:\n");
-       ks2 = ar_enc ^ prng_successor(nt, 64);
+  ks2 = ar_enc ^ prng_successor(nt, 64);
   ks3 = at_enc ^ prng_successor(nt, 96);
   printf("  ks2: %08x\n",ks2);
   printf("  ks3: %08x\n",ks3);
Impressum, Datenschutz