From fc6b7ce367eaeda3772575be2bc265a8521ffa84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Wed, 13 May 2015 17:43:29 +0200 Subject: Added aes_tester as build target. Added initial version of aes_tester program with NIST test vectors. --- sw/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sw/Makefile') diff --git a/sw/Makefile b/sw/Makefile index 0dbd61a..0e24e7b 100755 --- a/sw/Makefile +++ b/sw/Makefile @@ -2,7 +2,7 @@ CC = gcc CFLAGS = -Wall -fPIC LIB = libcryptech.a -BIN = hash hash_tester trng_extractor trng_tester +BIN = hash hash_tester trng_extractor trng_tester aes_tester INC = cryptech.h PREFIX = /usr/local @@ -24,6 +24,9 @@ hash_tester: hash_tester.o $(LIB) trng_tester: trng_tester.o $(LIB) $(CC) -o $@ $^ +aes_tester: aes_tester.o $(LIB) + $(CC) -o $@ $^ + hash: hash.o $(LIB) $(CC) -o $@ $^ -- cgit v1.2.3