From 5f152f558e7bc8fc8d93ae250bdc61cd60ab5acd Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Thu, 11 Jun 2015 10:53:26 -0400 Subject: First cut at RSA decryption/signature using the Chinese Remainder Theorem. Not yet tested, and given the number of moving parts I would be astonished if this version actually worked, but it does compile. Added some timing code to tests/test-rsa.c so we can see whether this is doing anything useful once it does work. --- tests/Makefile.in | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/Makefile.in') diff --git a/tests/Makefile.in b/tests/Makefile.in index 757624a..46a3aba 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -34,6 +34,13 @@ BIN = test-aes-key-wrap test-hash test-pbkdf2 test-rsa CC = @CC@ CFLAGS = @CFLAGS@ -I.. LDFLAGS = @LDFLAGS@ ${LIB} +TFMDIR = @TFMDIR@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +includedir = @includedir@ +libdir = @libdir@ +abs_top_builddir= @abs_top_builddir@ all: ${BIN} -- cgit v1.2.3