- Added support for PKCS#1 v2.1 encoding and thus support for the RSAES-OAEP and RSASSA-PSS operations (enabled by POLARSSL_PKCS1_V21)


diff --git a/tests/Makefile b/tests/Makefile
index 8b80b3e..861487a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -17,7 +17,7 @@
 		test_suite_shax			test_suite_x509parse\
 		test_suite_xtea			test_suite_debug	\
 		test_suite_version		test_suite_md		\
-		test_suite_cipher
+		test_suite_cipher		test_suite_pkcs1_v21
 
 .SILENT:
 
@@ -71,6 +71,10 @@
 	echo   "  CC    	$@.c"
 	$(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@
 
+test_suite_pkcs1_v21: test_suite_pkcs1_v21.c ../library/libpolarssl.a
+	echo   "  CC    	$@.c"
+	$(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@
+
 test_suite_rsa: test_suite_rsa.c ../library/libpolarssl.a
 	echo   "  CC    	$@.c"
 	$(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@