]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/rsa.mk
clearing up inclusion structure for easier integration in supercop
[avr-crypto-lib.git] / mkfiles / rsa.mk
1 # Makefile for RSA
2 ALGO_NAME := RSA
3
4 # comment out the following line for removement of RSA from the build process
5 PK_CIPHERS += $(ALGO_NAME)
6
7 $(ALGO_NAME)_DIR      := rsa/
8 $(ALGO_NAME)_INCDIR   := bigint/ noekeon/ memxor/ hfal/
9 $(ALGO_NAME)_OBJ      := bigint.o bigint_io.o bigint_add_u.o rsa.o rsa_key_blob.o
10 $(ALGO_NAME)_TEST_BIN := main-rsa-test.o $(CLI_STD)  \
11                          noekeon_asm.o noekeon_prng.o memxor.o 
12                          
13 $(ALGO_NAME)_PERFORMANCE_TEST := performance
14