diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-01-09 15:51:57 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-01-09 15:51:57 +0000 |
commit | efd634ccf636b870b2dbd79f8969f8999c5573fa (patch) | |
tree | 4492353a28bf7add22f9ea7a42233a6bd679ca44 /src/util/Makefile.am | |
parent | 8215376b2d1b4a3d95a0cf1ba474cf4be437c1b0 (diff) |
adding support for blind signatures (modernized version of Taler logic, with variable key length)
Diffstat (limited to 'src/util/Makefile.am')
-rw-r--r-- | src/util/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/Makefile.am b/src/util/Makefile.am index a71dd76df5..87651e6209 100644 --- a/src/util/Makefile.am +++ b/src/util/Makefile.am @@ -88,6 +88,7 @@ libgnunetutil_la_SOURCES = \ crypto_mpi.c \ crypto_paillier.c \ crypto_random.c \ + crypto_rsa.c \ disk.c \ disk.h \ getopt.c \ @@ -229,6 +230,7 @@ check_PROGRAMS = \ test_crypto_hkdf \ test_crypto_paillier \ test_crypto_random \ + test_crypto_rsa \ test_disk \ test_getopt \ test_connection.nc \ @@ -404,6 +406,11 @@ test_crypto_random_SOURCES = \ test_crypto_random_LDADD = \ libgnunetutil.la +test_crypto_rsa_SOURCES = \ + test_crypto_rsa.c +test_crypto_rsa_LDADD = \ + libgnunetutil.la + test_disk_SOURCES = \ test_disk.c test_disk_LDADD = \ |