mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
add a pwd to ntag215 sim if empty
This commit is contained in:
parent
4f27d2c026
commit
834023b132
3 changed files with 22 additions and 3 deletions
|
@ -27,10 +27,20 @@
|
|||
#include "common.h" //BSWAP_32/64
|
||||
#include "util.h"
|
||||
#include "pm3_cmd.h"
|
||||
#include "ui.h"
|
||||
#include "crc16.h" // crc16 ccitt
|
||||
#include "mbedtls/sha1.h"
|
||||
#include "mbedtls/md5.h"
|
||||
#include "crc16.h" // crc16 ccitt
|
||||
#include "mbedtls/cmac.h"
|
||||
#include "mbedtls/cipher.h"
|
||||
#include "mbedtls/md.h"
|
||||
|
||||
#ifndef ON_DEVICE
|
||||
#include "ui.h"
|
||||
# define prnt(args...) PrintAndLogEx(DEBUG, ## args );
|
||||
#else
|
||||
# include "dbprint.h"
|
||||
# define prnt Dbprintf
|
||||
#endif
|
||||
|
||||
// Implementation tips:
|
||||
// For each implementation of the algos, I recommend adding a self test for easy "simple unit" tests when Travis CI / Appveyor runs.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue