mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 14:23:50 -07:00
fix clarify
This commit is contained in:
parent
9d355a9b4e
commit
f61ca64681
1 changed files with 2 additions and 2 deletions
|
@ -177,10 +177,10 @@ static State successor(uint8_t *k, State s, bool y) {
|
|||
State successor = {0, 0, 0, 0};
|
||||
|
||||
successor.t = s.t >> 1;
|
||||
successor.t |= ((T(s)) ^ r0 ^ r4) << 15;
|
||||
successor.t |= ((T(s)) ^ (r0) ^ (r4)) << 15;
|
||||
|
||||
successor.b = s.b >> 1;
|
||||
successor.b |= ((B(s)) ^ r7) << 7;
|
||||
successor.b |= ((B(s)) ^ (r7)) << 7;
|
||||
|
||||
bool Tt = T(s);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue