X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=mkfiles%2Fgcm.mk;fp=mkfiles%2Fgcm.mk;h=2421a380da5c32ebf8500a1c4eaab93c498f1ee7;hp=0000000000000000000000000000000000000000;hb=e542ff92d053ecf40b42364a44bc887431cecae2;hpb=deca11a7e7be5605c387aa2cd577e22925854ff8 diff --git a/mkfiles/gcm.mk b/mkfiles/gcm.mk new file mode 100644 index 0000000..2421a38 --- /dev/null +++ b/mkfiles/gcm.mk @@ -0,0 +1,18 @@ +# Makefile for AES +ALGO_NAME := GCM + +# comment out the following line for removement of AES from the build process +BLOCK_CIPHERS += $(ALGO_NAME) + +$(ALGO_NAME)_DIR := gcm/ +$(ALGO_NAME)_INCDIR := memxor/ aes/ gf256mul/ bcal/ +$(ALGO_NAME)_OBJ := gcm128.o \ + aes_enc-asm.o aes_dec-asm.o aes_sbox-asm.o aes_invsbox-asm.o \ + aes_keyschedule-asm.o +$(ALGO_NAME)_TESTBIN := main-gcm-test.o $(CLI_STD) $(BCAL_STD) \ + bcal_aes128.o bcal_aes192.o bcal_aes256.o \ + dump-asm.o dump-decl.o \ + memxor.o +$(ALGO_NAME)_NESSIE_TEST := test nessie +$(ALGO_NAME)_PERFORMANCE_TEST := performance +