blob: c93324bd2c71c3369b886dca108d430a4a3e35e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
CFLAGS += -Wall -Wextra -ansi
LDFLAGS += -lnettle
all: aesscan
aesscan: aesscan.o
clean:
-rm -f aesscan aesscan.o
# Should show "109992: found key (decrypted data = 4 text, 0 binary)"
test: aesscan
./aesscan -s test/keyandjunk.bin test/encrypted-txt-with-iv.bin test/encrypted-txt-with-iv-1.bin test/encrypted-txt-with-iv-2.bin test/encrypted-txt-with-iv-3.bin
.PHONY: all clean test
|