Hello, finally I can recover the key with nonce distances, but I want also to reduce nonces with 3 parity bits.
In Wirelessly.Pickpocketing.a.Mifare.Classic.Card-IEEE.2009.pdf there is Theorem 3.3, and I should compare xor(nt0-8) with {p0}^{nt8}^1, xor(nt8-16) with {p1}^{nt16}^1 and xor(nt16-24) with {p2}^{nt24}^1.
{Nt}: 48! 92! e6! 62
{P} 00 01 01 00 (this is print_hex(abtRxPar,4) from {Nt} tag challange);
Enc_nt 0x4892e662
Nt 0xb73d815c
01234567890123456789012345678901 ---------
01001000100100101110011001100010 ENC_NT
10110111001111011000000101011100 NT
-------------------------------------------------------
NT ^0-8, ^8-16, ^16-24 {P} ^ {Nt8,16,24} ^ 1
101101110 = 0 { 0 ^ 1 ^ 1 } = 0
001111011 = 0 { 1 ^ 1 ^ 1 } = 1
100000010 = 0 { 1 ^ 0 ^ 1 } = 0
Please, could you explain me what's wrong? Thanks.