- Added CTR_DRBG based on AES-256-CTR (NIST SP 800-90) random generator
diff --git a/tests/Makefile b/tests/Makefile
index ba4052f..8ecf346 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -12,7 +12,8 @@
APPS = test_suite_aes test_suite_arc4 \
test_suite_base64 test_suite_camellia \
test_suite_cipher.aes test_suite_cipher.camellia \
- test_suite_cipher.des test_suite_debug \
+ test_suite_cipher.des test_suite_ctr_drbg \
+ test_suite_debug \
test_suite_des test_suite_dhm \
test_suite_error test_suite_hmac_shax \
test_suite_md test_suite_mdx \
@@ -65,6 +66,10 @@
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
+test_suite_ctr_drbg: test_suite_ctr_drbg.c ../library/libpolarssl.a
+ echo " CC $@.c"
+ $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
+
test_suite_cipher.des: test_suite_cipher.des.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@