Searched refs:ocsp (Results 1 – 25 of 38) sorted by relevance
12
/openssl/demos/certs/ |
H A D | ocspquery.sh | 18 opensslcmd ocsp -issuer intca.pem -cert client.pem -CAfile root.pem \ 20 opensslcmd ocsp -issuer intca.pem -cert server.pem -CAfile root.pem \ 22 opensslcmd ocsp -issuer intca.pem -cert rev.pem -CAfile root.pem \ 26 opensslcmd ocsp -issuer intca.pem \
|
H A D | ocsprun.sh | 20 opensslcmd ocsp -port $PORT -index index.txt -CA intca.pem \
|
/openssl/doc/man3/ |
H A D | OCSP_sendreq_new.pod | 18 #include <openssl/ocsp.h> 71 OSSL_HTTP_REQ_CTX_set1_req(rctx, "application/ocsp-request", it, req) 75 OSSL_HTTP_REQ_CTX_set1_req(rctx, "application/ocsp-request",
|
H A D | OCSP_cert_to_id.pod | 10 #include <openssl/ocsp.h>
|
H A D | OCSP_request_add1_nonce.pod | 9 #include <openssl/ocsp.h>
|
H A D | OCSP_REQUEST_new.pod | 11 #include <openssl/ocsp.h>
|
H A D | OCSP_resp_find_status.pod | 16 #include <openssl/ocsp.h> 135 if the signer certificate contains the B<id-pkix-ocsp-no-check> extension.
|
H A D | OCSP_response_status.pod | 13 #include <openssl/ocsp.h>
|
/openssl/doc/man1/ |
H A D | openssl-ocsp.pod.in | 6 openssl-ocsp - Online Certificate Status Protocol command 12 B<openssl> B<ocsp> 55 B<openssl> B<ocsp> 489 openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem -reqout req.der 491 Send a query to an OCSP responder with URL http://ocsp.myhost.com/ save the 494 openssl ocsp -issuer issuer.pem -cert c1.pem -cert c2.pem \ 495 -url http://ocsp.myhost.com/ -resp_text -respout resp.der 499 openssl ocsp -respin resp.der -text -noverify 504 openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem 514 openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem [all …]
|
H A D | openssl-cmds.pod.in | 31 ocsp, 112 L<openssl-ocsp(1)>,
|
H A D | build.info | 31 DEPEND[openssl-ocsp.pod]=../perlvars.pm
|
/openssl/test/ocsp-tests/ |
H A D | ca.cnf | 16 ##authorityInfoAccess = OCSP;URI:http://127.0.0.1:19254/ocsp
|
H A D | mk-ocsp-cert-chain.sh | 98 cat intermediate-cert.pem intermediate-key.pem > ocsp.pem
|
/openssl/apps/ |
H A D | build.info | 25 IF[{- !$disabled{'ocsp'} -}] 26 $OPENSSLSRC=$OPENSSLSRC ocsp.c
|
/openssl/ |
H A D | build.info | 39 include/openssl/ocsp.h \ 71 GENERATE[include/openssl/ocsp.h]=include/openssl/ocsp.h.in
|
H A D | .gitignore | 48 /include/openssl/ocsp.h
|
/openssl/ssl/statem/ |
H A D | extensions_srvr.c | 355 sk_OCSP_RESPID_pop_free(s->ext.ocsp.ids, OCSP_RESPID_free); in tls_parse_ctos_status_request() 357 s->ext.ocsp.ids = sk_OCSP_RESPID_new_null(); in tls_parse_ctos_status_request() 358 if (s->ext.ocsp.ids == NULL) { in tls_parse_ctos_status_request() 363 s->ext.ocsp.ids = NULL; in tls_parse_ctos_status_request() 392 if (!sk_OCSP_RESPID_push(s->ext.ocsp.ids, id)) { in tls_parse_ctos_status_request() 409 sk_X509_EXTENSION_pop_free(s->ext.ocsp.exts, in tls_parse_ctos_status_request() 411 s->ext.ocsp.exts = in tls_parse_ctos_status_request() 413 if (s->ext.ocsp.exts == NULL || ext_data != PACKET_end(&exts)) { in tls_parse_ctos_status_request()
|
H A D | extensions_clnt.c | 373 for (i = 0; i < sk_OCSP_RESPID_num(s->ext.ocsp.ids); i++) { in tls_construct_ctos_status_request() 375 OCSP_RESPID *id = sk_OCSP_RESPID_value(s->ext.ocsp.ids, i); in tls_construct_ctos_status_request() 391 if (s->ext.ocsp.exts) { in tls_construct_ctos_status_request() 393 int extlen = i2d_X509_EXTENSIONS(s->ext.ocsp.exts, NULL); in tls_construct_ctos_status_request() 400 || i2d_X509_EXTENSIONS(s->ext.ocsp.exts, &extbytes) in tls_construct_ctos_status_request()
|
H A D | extensions.c | 1147 OPENSSL_free(s->ext.ocsp.resp); in init_status_request() 1148 s->ext.ocsp.resp = NULL; in init_status_request() 1149 s->ext.ocsp.resp_len = 0; in init_status_request()
|
/openssl/.github/workflows/ |
H A D | run-checker-merge.yml | 31 no-ocsp,
|
/openssl/ssl/ |
H A D | s3_lib.c | 3614 *(STACK_OF(X509_EXTENSION) **)parg = sc->ext.ocsp.exts; in ssl3_ctrl() 3619 sc->ext.ocsp.exts = parg; in ssl3_ctrl() 3624 *(STACK_OF(OCSP_RESPID) **)parg = sc->ext.ocsp.ids; in ssl3_ctrl() 3629 sc->ext.ocsp.ids = parg; in ssl3_ctrl() 3634 *(unsigned char **)parg = sc->ext.ocsp.resp; in ssl3_ctrl() 3635 if (sc->ext.ocsp.resp_len == 0 in ssl3_ctrl() 3636 || sc->ext.ocsp.resp_len > LONG_MAX) in ssl3_ctrl() 3638 return (long)sc->ext.ocsp.resp_len; in ssl3_ctrl() 3641 OPENSSL_free(sc->ext.ocsp.resp); in ssl3_ctrl() 3642 sc->ext.ocsp.resp = parg; in ssl3_ctrl() [all …]
|
H A D | ssl_lib.c | 822 s->ext.ocsp.ids = NULL; in ossl_ssl_connection_new_int() 823 s->ext.ocsp.exts = NULL; in ossl_ssl_connection_new_int() 824 s->ext.ocsp.resp = NULL; in ossl_ssl_connection_new_int() 825 s->ext.ocsp.resp_len = 0; in ossl_ssl_connection_new_int() 1449 sk_X509_EXTENSION_pop_free(s->ext.ocsp.exts, X509_EXTENSION_free); in ossl_ssl_connection_free() 1451 sk_OCSP_RESPID_pop_free(s->ext.ocsp.ids, OCSP_RESPID_free); in ossl_ssl_connection_free() 1457 OPENSSL_free(s->ext.ocsp.resp); in ossl_ssl_connection_free() 6314 if (s->ext.ocsp.resp == NULL || s->ext.ocsp.resp_len == 0) in ct_extract_ocsp_response_scts() 6317 p = s->ext.ocsp.resp; in ct_extract_ocsp_response_scts() 6318 rsp = d2i_OCSP_RESPONSE(NULL, &p, (int)s->ext.ocsp.resp_len); in ct_extract_ocsp_response_scts()
|
/openssl/fuzz/ |
H A D | build.info | 29 IF[{- !$disabled{"ocsp"} -}] 164 IF[{- !$disabled{"ocsp"} -}]
|
/openssl/crypto/err/ |
H A D | openssl.ec | 28 L OCSP include/openssl/ocsperr.h crypto/ocsp/ocsp_err.c include/cry…
|
/openssl/crypto/ |
H A D | build.info | 8 err comp http ocsp cms ts srp cmac ct async ess crmf cmp encode_decode \
|
Completed in 143 milliseconds
12