mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 08:16:33 +01:00
- Added crl_app program to allow easy reading and printing of X509 CRLs from file
This commit is contained in:
parent
96743fc5f5
commit
a9507c063b
4 changed files with 165 additions and 2 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue