diff options
author | Tobias Brunner <tobias@strongswan.org> | 2017-06-15 14:36:40 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2017-07-05 10:15:45 +0200 |
commit | ef6b710f192d7ffedaab9af008ccdf46d2a9b070 (patch) | |
tree | 8ae1444cad160ea56b039b81fc80e676d0db918c | |
parent | 609457e4c8230f2eff79c85a2e3b13388394e3f3 (diff) | |
download | strongswan-ef6b710f192d7ffedaab9af008ccdf46d2a9b070.tar.bz2 strongswan-ef6b710f192d7ffedaab9af008ccdf46d2a9b070.tar.xz |
pki: Load pubkey plugin to print public keys
Since 3317d0e77b1a the public keys are printed via certificate printer,
but that only works if the public key is actually wrapped, which
requires the pubkey plugin.
Fixes: 3317d0e77b1a ("Standardized printing of certificate information")
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6a2bc1f3b..478cb04f2 100644 --- a/configure.ac +++ b/configure.ac @@ -1337,7 +1337,7 @@ ADD_PLUGIN([x509], [s charon scepclient pki scripts attest nm cm ADD_PLUGIN([revocation], [s charon pki nm cmd]) ADD_PLUGIN([constraints], [s charon nm cmd]) ADD_PLUGIN([acert], [s charon]) -ADD_PLUGIN([pubkey], [s charon cmd aikgen]) +ADD_PLUGIN([pubkey], [s charon pki cmd aikgen]) ADD_PLUGIN([pkcs1], [s charon scepclient pki scripts manager medsrv attest nm cmd aikgen fuzz]) ADD_PLUGIN([pkcs7], [s charon scepclient pki scripts nm cmd]) ADD_PLUGIN([pkcs8], [s charon scepclient pki scripts manager medsrv attest nm cmd]) |