- Added generic message digest wrapper for integration with OpenVPN (donated by Fox-IT)

This commit is contained in:
Paul Bakker 2011-01-06 14:20:01 +00:00
parent 37ca75d6f2
commit 1737385e04
12 changed files with 2540 additions and 4 deletions

View file

@ -15,7 +15,7 @@ APPS = test_suite_aes test_suite_arc4 \
test_suite_mpi test_suite_rsa \
test_suite_shax test_suite_x509parse\
test_suite_xtea test_suite_debug \
test_suite_version
test_suite_version test_suite_md
.SILENT:
@ -53,6 +53,10 @@ test_suite_hmac_shax: test_suite_hmac_shax.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
test_suite_md: test_suite_md.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
test_suite_mdx: test_suite_mdx.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@