mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 10:16:52 +08:00
fix: hf mfu pwdgen - xyz forgot header
This commit is contained in:
parent
08f40ef310
commit
437504eae6
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ extern int DBGLEVEL;
|
|||
# define ROTR(x,n) (((uintmax_t)(x) >> (n)) | ((uintmax_t)(x) << ((sizeof(x) * 8) - (n))))
|
||||
#endif
|
||||
|
||||
#ifndef ROTL
|
||||
# define ROTL(x,n) (((uintmax_t)(x) << (n)) | ((uintmax_t)(x) >> ((sizeof(x) * 8) - (n))))
|
||||
#ifndef PM3_ROTL
|
||||
# define PM3_ROTL(x,n) (((uintmax_t)(x) << (n)) | ((uintmax_t)(x) >> ((sizeof(x) * 8) - (n))))
|
||||
#endif
|
||||
|
||||
// endian change for 64bit
|
||||
|
|
Loading…
Reference in a new issue