]> git.cryptolib.org Git - avr-crypto-lib.git/blob - mkfiles/rsaes_oaep.mk
fixing style, typos and uart
[avr-crypto-lib.git] / mkfiles / rsaes_oaep.mk
1 # Makefile for RSA
2 ALGO_NAME := RSAES_OAEP
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   := memxor/ bigint/ noekeon/ hfal/ sha1/ mgf1/
9 $(ALGO_NAME)_OBJ      := bigint.o bigint_io.o rsa_basic.o rsaes_oaep.o mgf1.o hfal-basic.o hfal_sha1.o sha1.o
10 $(ALGO_NAME)_TESTBIN := main-rsaes_oaep-test.o $(CLI_STD) random_dummy.o \
11                          noekeon.o noekeon_prng.o memxor.o 
12                          
13 $(ALGO_NAME)_PERFORMANCE_TEST := performance
14