mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
e99acd00cc
CHG: since sim commands are timing critical, I'm testing a smaller prand prng function from Intel
21 lines
No EOL
722 B
C
21 lines
No EOL
722 B
C
//-----------------------------------------------------------------------------
|
|
// Micolous Jan 2017
|
|
// Iceman Jan 2017
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// pseudo rng generator. To be used when PM3 simulates Mifare tag.
|
|
// i.e. 'hf mf sim'
|
|
// 'hf 14a sim'
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __RANDOM_H
|
|
#define __RANDOM_H
|
|
|
|
#include "common.h"
|
|
#include "ticks.h"
|
|
void fast_prand();
|
|
void fast_prandEx(uint32_t seed);
|
|
uint32_t prand();
|
|
#endif |