]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/ecdsa.mk
switching to simualtion testport
[avr-crypto-lib.git] / mkfiles / ecdsa.mk
1 # Makefile for ECDSA
2 ALGO_NAME := ECDSA
3
4 # comment out the following line for removement of ECDSA from the build process
5 SIGNATURE += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := ecdsa/
8 $(ALGO_NAME)_INCDIR   := memxor/ bigint/ sha1/ sha2/ noekeon/ base64/ hfal/
9 $(ALGO_NAME)_OBJ      := bigint.o bigint_io.o nist_p192.o ecc_chudnovsky.o ecdsa_sign.o base64_enc.o \
10                          sha2_small_common.o sha2_large_common.o sha224.o sha256.o sha384.o sha512.o \
11                          sha1-asm.o
12 $(ALGO_NAME)_TESTBIN  := main-ecdsa-test.o $(CLI_STD) $(HFAL_STD) \
13                          noekeon_asm.o noekeon_prng.o memxor.o \
14                          hfal_sha1.o hfal_sha224.o hfal_sha256.o hfal_sha384.o hfal_sha512.o
15                          
16 $(ALGO_NAME)_PERFORMANCE_TEST := performance
17