- Added support for RFC4055 SHA2 and SHA4 signature algorithms for
   use with PKCS#1 v1.5 signing and verification.
 - Added extra certificates to test-ca and test code to further test
   functionality of SHA2 and SHA4 signing and verification.
 - Updated other program files accordingly

diff --git a/programs/Makefile b/programs/Makefile
index a29f358..a87ae3e 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -13,7 +13,8 @@
 	pkey/mpi_demo		pkey/rsa_genkey		\
 	pkey/rsa_sign		pkey/rsa_verify		\
 	ssl/ssl_client1		ssl/ssl_client2		\
-	ssl/ssl_server		test/benchmark		\
+	ssl/ssl_server		test/ssl_cert_test	\
+	test/benchmark					\
 	test/selftest		test/ssl_test
 
 .SILENT:
@@ -80,6 +81,10 @@
 	echo   "  CC    ssl/ssl_server.c"
 	$(CC) $(CFLAGS) $(OFLAGS) ssl/ssl_server.c   $(LDFLAGS) -o $@
 
+test/ssl_cert_test: test/ssl_cert_test.c ../library/libpolarssl.a
+	echo   "  CC    test/ssl_cert_test.c"
+	$(CC) $(CFLAGS) $(OFLAGS) test/ssl_cert_test.c   $(LDFLAGS) -o $@
+
 test/benchmark: test/benchmark.c ../library/libpolarssl.a
 	echo   "  CC    test/benchmark.c"
 	$(CC) $(CFLAGS) $(OFLAGS) test/benchmark.c   $(LDFLAGS) -o $@