mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
common: fix mix of spaces & tabs
This commit is contained in:
parent
9502b54aa0
commit
23f1a253a7
32 changed files with 4323 additions and 4323 deletions
|
@ -17,7 +17,7 @@ uint32_t burtle_get_mod( prng_ctx *x ) {
|
|||
|
||||
void burtle_init_mod(prng_ctx *x, uint32_t seed ) {
|
||||
x->a = 0xf1ea5eed;
|
||||
x->b = x->c = x->d = seed;
|
||||
x->b = x->c = x->d = seed;
|
||||
for (uint8_t i=0; i < 42; ++i) {
|
||||
(void)burtle_get_mod(x);
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ void burtle_init(prng_ctx *x, uint32_t seed ) {
|
|||
|
||||
|
||||
uint32_t GetSimplePrng( uint32_t seed ){
|
||||
seed *= 0x19660D;
|
||||
seed += 0x3C6EF35F;
|
||||
return seed;
|
||||
seed *= 0x19660D;
|
||||
seed += 0x3C6EF35F;
|
||||
return seed;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue