]> git.cryptolib.org Git - arm-crypto-lib.git/blobdiff - mkfiles/rsa.mk
first idea of RSA (PKCS#1 v1.5)
[arm-crypto-lib.git] / mkfiles / rsa.mk
diff --git a/mkfiles/rsa.mk b/mkfiles/rsa.mk
new file mode 100644 (file)
index 0000000..219400f
--- /dev/null
@@ -0,0 +1,14 @@
+# Makefile for RSA
+ALGO_NAME := RSA
+
+# comment out the following line for removement of RSA from the build process
+SIGNATURE += $(ALGO_NAME)
+
+$(ALGO_NAME)_DIR      := rsa/
+$(ALGO_NAME)_INCDIR   := memxor/ bigint/ noekeon/
+$(ALGO_NAME)_OBJ      := bigint.o bigint_io.o rsa_basic.o rsa_pkcs15.o 
+$(ALGO_NAME)_TESTBIN := main-rsa-test.o $(CLI_STD) random_dummy.o \
+                         noekeon.o noekeon_prng.o memxor.o 
+                        
+$(ALGO_NAME)_PERFORMANCE_TEST := performance
+