提交 33826fd0 编写于 作者: D Dr. Stephen Henson

Add support for '-' as input and output filenames in ocsp utility.

Recognise verification arguments.
上级 92821996
...@@ -148,6 +148,7 @@ int MAIN(int argc, char **argv) ...@@ -148,6 +148,7 @@ int MAIN(int argc, char **argv)
long nsec = MAX_VALIDITY_PERIOD, maxage = -1; long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
char *CAfile = NULL, *CApath = NULL; char *CAfile = NULL, *CApath = NULL;
X509_STORE *store = NULL; X509_STORE *store = NULL;
X509_VERIFY_PARAM *vpm = NULL;
STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL; STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL; char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
unsigned long sign_flags = 0, verify_flags = 0, rflags = 0; unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
...@@ -356,6 +357,12 @@ int MAIN(int argc, char **argv) ...@@ -356,6 +357,12 @@ int MAIN(int argc, char **argv)
} }
else badarg = 1; else badarg = 1;
} }
else if (args_verify(&args, NULL, &badarg, bio_err, &vpm))
{
if (badarg)
goto end;
continue;
}
else if (!strcmp (*args, "-validity_period")) else if (!strcmp (*args, "-validity_period"))
{ {
if (args[1]) if (args[1])
...@@ -637,7 +644,10 @@ int MAIN(int argc, char **argv) ...@@ -637,7 +644,10 @@ int MAIN(int argc, char **argv)
if (!req && reqin) if (!req && reqin)
{ {
derbio = BIO_new_file(reqin, "rb"); if (!strcmp(reqin, "-"))
derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
else
derbio = BIO_new_file(reqin, "rb");
if (!derbio) if (!derbio)
{ {
BIO_printf(bio_err, "Error Opening OCSP request file\n"); BIO_printf(bio_err, "Error Opening OCSP request file\n");
...@@ -739,7 +749,10 @@ int MAIN(int argc, char **argv) ...@@ -739,7 +749,10 @@ int MAIN(int argc, char **argv)
if (reqout) if (reqout)
{ {
derbio = BIO_new_file(reqout, "wb"); if (!strcmp(respout, "-"))
derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
else
derbio = BIO_new_file(reqout, "wb");
if(!derbio) if(!derbio)
{ {
BIO_printf(bio_err, "Error opening file %s\n", reqout); BIO_printf(bio_err, "Error opening file %s\n", reqout);
...@@ -782,7 +795,10 @@ int MAIN(int argc, char **argv) ...@@ -782,7 +795,10 @@ int MAIN(int argc, char **argv)
} }
else if (respin) else if (respin)
{ {
derbio = BIO_new_file(respin, "rb"); if (!strcmp(respin, "-"))
derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
else
derbio = BIO_new_file(respin, "rb");
if (!derbio) if (!derbio)
{ {
BIO_printf(bio_err, "Error Opening OCSP response file\n"); BIO_printf(bio_err, "Error Opening OCSP response file\n");
...@@ -807,7 +823,10 @@ int MAIN(int argc, char **argv) ...@@ -807,7 +823,10 @@ int MAIN(int argc, char **argv)
if (respout) if (respout)
{ {
derbio = BIO_new_file(respout, "wb"); if (!strcmp(respout, "-"))
derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
else
derbio = BIO_new_file(respout, "wb");
if(!derbio) if(!derbio)
{ {
BIO_printf(bio_err, "Error opening file %s\n", respout); BIO_printf(bio_err, "Error opening file %s\n", respout);
...@@ -854,6 +873,8 @@ int MAIN(int argc, char **argv) ...@@ -854,6 +873,8 @@ int MAIN(int argc, char **argv)
store = setup_verify(bio_err, CAfile, CApath); store = setup_verify(bio_err, CAfile, CApath);
if (!store) if (!store)
goto end; goto end;
if (vpm)
X509_STORE_set1_param(store, vpm);
if (verify_certfile) if (verify_certfile)
{ {
verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM, verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
...@@ -904,6 +925,8 @@ end: ...@@ -904,6 +925,8 @@ end:
ERR_print_errors(bio_err); ERR_print_errors(bio_err);
X509_free(signer); X509_free(signer);
X509_STORE_free(store); X509_STORE_free(store);
if (vpm)
X509_VERIFY_PARAM_free(vpm);
EVP_PKEY_free(key); EVP_PKEY_free(key);
EVP_PKEY_free(rkey); EVP_PKEY_free(rkey);
X509_free(issuer); X509_free(issuer);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册