Moved include mifare.h to mfkey.h instead mfkey.c

This commit is contained in:
etmatrix 2017-08-18 09:55:05 +02:00
commit ebe3dcba4c
3 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,6 @@
// MIFARE Darkside hack
//-----------------------------------------------------------------------------
#include "mifare.h"
#include "mfkey.h"
#include "crapto1/crapto1.h"

View file

@ -15,6 +15,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "mifare.h"
extern bool mfkey32(nonces_t data, uint64_t *outputkey);
extern bool mfkey32_moebius(nonces_t data, uint64_t *outputkey);

View file

@ -1,7 +1,7 @@
VPATH = ../../common ../../common/crapto1 ../../client
CC = gcc
LD = gcc
CFLAGS = -std=c99 -D_ISOC99_SOURCE -I../../common -I../../client -Wall -O3
CFLAGS = -std=c99 -D_ISOC99_SOURCE -I../../common -I../../client -I../../include -Wall -O3
LDFLAGS =
OBJS = crypto1.o crapto1.o parity.o util_posix.o mfkey.o