- Added crl_app program to allow easy reading and printing of X509 CRLs from file

This commit is contained in:
Paul Bakker 2011-02-12 15:27:28 +00:00
parent 96743fc5f5
commit a9507c063b
4 changed files with 165 additions and 2 deletions

View file

@ -18,7 +18,7 @@ APPS = aes/aescrypt2 aes/crypt_and_hash \
ssl/ssl_server random/gen_random \
test/ssl_cert_test test/benchmark \
test/selftest test/ssl_test \
x509/cert_app
x509/cert_app x509/crl_app
.SILENT:
@ -116,6 +116,10 @@ x509/cert_app: x509/cert_app.c ../library/libpolarssl.a
echo " CC x509/cert_app.c"
$(CC) $(CFLAGS) $(OFLAGS) x509/cert_app.c $(LDFLAGS) -o $@
x509/crl_app: x509/crl_app.c ../library/libpolarssl.a
echo " CC x509/crl_app.c"
$(CC) $(CFLAGS) $(OFLAGS) x509/crl_app.c $(LDFLAGS) -o $@
clean:
rm -f $(APPS)