diff options
author | Martin Willi <martin@revosec.ch> | 2010-12-03 13:25:45 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2011-01-05 16:45:56 +0100 |
commit | bb0cda2fa9b52d0caac9f98686e12ad9f1ca5905 (patch) | |
tree | e679f775b2e4bd4d2e70f7275c58360564511d49 /src/pki/commands/print.c | |
parent | 6807c0ca2cd88356856439e9529eac1cb3f1624b (diff) | |
download | strongswan-bb0cda2fa9b52d0caac9f98686e12ad9f1ca5905.tar.bz2 strongswan-bb0cda2fa9b52d0caac9f98686e12ad9f1ca5905.tar.xz |
pki tool shows and builds crlSign keyUsage
Diffstat (limited to 'src/pki/commands/print.c')
-rw-r--r-- | src/pki/commands/print.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pki/commands/print.c b/src/pki/commands/print.c index 4dcc4718e..35fdaac95 100644 --- a/src/pki/commands/print.c +++ b/src/pki/commands/print.c @@ -105,6 +105,10 @@ static void print_x509(x509_t *x509) { printf("CA "); } + if (flags & X509_CRL_SIGN) + { + printf("CRLSign "); + } if (flags & X509_AA) { printf("AA "); |