Move the SCT List extension parser into libssl.

Add the extension parser in the s_client, ocsp and x509 apps.
This commit is contained in:
Rob Stradling
2014-02-19 13:12:46 +00:00
parent dcfe8df148
commit b263f21246
12 changed files with 168 additions and 280 deletions

View File

@@ -174,6 +174,7 @@ int MAIN(int argc, char **argv)
goto end;
SSL_load_error_strings();
OpenSSL_add_ssl_algorithms();
X509V3_EXT_add_rfc6962();
args = argv + 1;
reqnames = sk_OPENSSL_STRING_new_null();
ids = sk_OCSP_CERTID_new_null();
@@ -970,6 +971,7 @@ end:
OPENSSL_free(path);
}
X509V3_EXT_cleanup();
OPENSSL_EXIT(ret);
}