mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
Disabling aesni detection on OSX
This commit is contained in:
parent
a98b9590c6
commit
cce9edcd0f
1 changed files with 8 additions and 2 deletions
|
@ -37,10 +37,16 @@
|
|||
#include <unistd.h>
|
||||
//#include <mbedtls/aes.h>
|
||||
#include "util_posix.h"
|
||||
#include "aes-ni.h"
|
||||
#include "detectaes.h"
|
||||
#include "randoms.h"
|
||||
|
||||
#include "aes-ni.h"
|
||||
|
||||
#if defined(__APPLE__) || defined(__MACH__)
|
||||
#else
|
||||
#include "detectaes.h"
|
||||
#endif
|
||||
|
||||
|
||||
#define AEND "\x1b[0m"
|
||||
#define _RED_(s) "\x1b[31m" s AEND
|
||||
#define _GREEN_(s) "\x1b[32m" s AEND
|
||||
|
|
Loading…
Reference in a new issue