diff options
author | Stef Walter <stefw@gnome.org> | 2013-01-30 15:50:02 +0100 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2013-02-05 15:00:25 +0100 |
commit | 39e9f190416ecb4260a3b079e1d79fc2e55f5a33 (patch) | |
tree | d5fb48883d20a3a73f7153971a6e3265b8a06535 /tools/extract.c | |
parent | dbcf3c049f4aadc1d25eb952b4feabdec14cf35d (diff) |
Add support for exporting OpenSSL's TRUSTED CERTIFICATE format
Diffstat (limited to 'tools/extract.c')
-rw-r--r-- | tools/extract.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/extract.c b/tools/extract.c index 738b1c6..19b6c21 100644 --- a/tools/extract.c +++ b/tools/extract.c @@ -177,6 +177,8 @@ format_argument (const char *optarg, { "x509-directory", p11_extract_x509_directory, }, { "pem-bundle", p11_extract_pem_bundle, }, { "pem-directory", p11_extract_pem_directory }, + { "openssl-bundle", p11_extract_openssl_bundle }, + { "openssl-directory", p11_extract_openssl_directory }, { NULL }, }; @@ -283,6 +285,8 @@ limit_purposes_if_necessary (p11_extract_info *ex, */ static p11_extract_func format_supports_purposes[] = { + p11_extract_openssl_bundle, + p11_extract_openssl_directory, NULL }; |