mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 19:38:52 +08:00
REM: removed an test function
This commit is contained in:
parent
02d5a58388
commit
4c44d88500
1 changed files with 0 additions and 10 deletions
|
@ -141,13 +141,3 @@ uint32_t prng_successor(uint32_t x, uint32_t n)
|
|||
|
||||
return SWAPENDIAN(x);
|
||||
}
|
||||
|
||||
uint32_t prng_successor_one(uint32_t x)
|
||||
{
|
||||
SWAPENDIAN(x);
|
||||
|
||||
x = x >> 1 | (x >> 16 ^ x >> 18 ^ x >> 19 ^ x >> 21) << 31;
|
||||
|
||||
return SWAPENDIAN(x);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue