creating public key from RSA private key

RSA key generation and signature test
This commit is contained in:
Martin Willi
2008-03-18 12:13:51 +00:00
parent 8d49b51f8b
commit d7c529f5a6
4 changed files with 27 additions and 5 deletions
+2 -1
View File
@@ -12,6 +12,7 @@ libcharon_unit_tester_la_SOURCES = unit_tester.c unit_tester.h \
tests/test_curl.c \
tests/test_mysql.c \
tests/test_sqlite.c \
tests/test_mutex.c
tests/test_mutex.c \
tests/test_rsa_gen.c
libcharon_unit_tester_la_LDFLAGS = -module
+2 -1
View File
@@ -29,5 +29,6 @@ DEFINE_TEST("FIPS PRF", fips_prf_test, FALSE)
DEFINE_TEST("CURL get", test_curl_get, FALSE)
DEFINE_TEST("MySQL operations", test_mysql, FALSE)
DEFINE_TEST("SQLite operations", test_sqlite, FALSE)
DEFINE_TEST("mutex primitive", test_mutex, TRUE)
DEFINE_TEST("mutex primitive", test_mutex, FALSE)
DEFINE_TEST("RSA key generation", test_rsa_gen, TRUE)