Home
last modified time | relevance | path

Searched refs:url (Results 1 – 23 of 23) sorted by relevance

/openssl/
H A D.gitmodules3 url = https://github.com/pyca/cryptography.git
7 url = https://github.com/krb5/krb5
11 url = https://github.com/gost-engine/engine
15 url = https://github.com/google/wycheproof
18 url = https://github.com/tlsfuzzer/tlsfuzzer
21 url = https://github.com/tlsfuzzer/python-ecdsa
24 url = https://github.com/tlsfuzzer/tlslite-ng
27 url = https://github.com/open-quantum-safe/oqs-provider.git
H A DCHANGES.md13411 port and path components: primarily to parse OCSP URLs. New -url
/openssl/apps/lib/
H A Dhttp_server.c301 char *meth, *url, *end; in http_server_get_asn1_req() local
357 url = meth = reqbuf; in http_server_get_asn1_req()
362 url[-1] = '\0'; in http_server_get_asn1_req()
363 while (*url == ' ') in http_server_get_asn1_req()
364 url++; in http_server_get_asn1_req()
365 if (*url != '/') { in http_server_get_asn1_req()
368 meth, url); in http_server_get_asn1_req()
372 url++; in http_server_get_asn1_req()
400 len = urldecode(url); in http_server_get_asn1_req()
428 while (*url == '/') in http_server_get_asn1_req()
[all …]
H A Dapps.c2521 ASN1_VALUE *app_http_get_asn1(const char *url, const char *proxy, in app_http_get_asn1() argument
2534 if (url == NULL || it == NULL) { in app_http_get_asn1()
2539 if (!OSSL_HTTP_parse_url(url, &use_ssl, NULL /* userinfo */, &server, &port, in app_http_get_asn1()
2559 mem = OSSL_HTTP_get(url, proxy, no_proxy, NULL /* bio */, NULL /* rbio */, in app_http_get_asn1()
/openssl/demos/certs/
H A Docspquery.sh12 -url http://127.0.0.1:8888/
14 -url http://127.0.0.1:8888/
16 -url http://127.0.0.1:8888/
21 -CAfile root.pem -url http://127.0.0.1:8888/
/openssl/crypto/http/
H A Dhttp_lib.c39 int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost, in OSSL_parse_url() argument
61 if (url == NULL) { in OSSL_parse_url()
67 scheme = scheme_end = url; in OSSL_parse_url()
68 p = strstr(url, "://"); in OSSL_parse_url()
70 p = url; in OSSL_parse_url()
184 int OSSL_HTTP_parse_url(const char *url, int *pssl, char **puser, char **phost, in OSSL_HTTP_parse_url() argument
194 if (!OSSL_parse_url(url, &scheme, puser, phost, &port, pport_num, in OSSL_HTTP_parse_url()
H A Dhttp_client.c1143 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy, in OSSL_HTTP_get() argument
1160 if (url == NULL) { in OSSL_HTTP_get()
1164 if ((current_url = OPENSSL_strdup(url)) == NULL) in OSSL_HTTP_get()
/openssl/doc/man3/
H A DOSSL_HTTP_parse_url.pod18 int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost,
21 int OSSL_HTTP_parse_url(const char *url,
30 int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath,
48 OSSL_parse_url() parses its input string I<url> as a URL of the form
58 I<ppath>, I<pquery>, and I<pfrag>, is assigned the respective url component.
75 Calling the deprecated function OCSP_parse_url(url, host, port, path, ssl)
77 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL).
H A DX509_load_http.pod15 X509 *X509_load_http(const char *url, BIO *bio, BIO *rbio, int timeout);
16 X509_CRL *X509_CRL_load_http(const char *url, BIO *bio, BIO *rbio, int timeout);
28 respectively, in ASN.1 format using HTTP from the given B<url>.
H A DOSSL_HTTP_transfer.pod35 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
219 else from the server contained in the I<url>, and returns it as a BIO.
222 If I<bio> is non-NULL, any host and port components in the I<url> are not used
224 Any userinfo and fragment components in the I<url> are ignored.
226 If the scheme component of the I<url> is C<https> a TLS connection is requested
/openssl/include/openssl/
H A Dhttp.h78 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
97 int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost,
100 int OSSL_HTTP_parse_url(const char *url, int *pssl, char **puser, char **phost,
H A Docsp.h.in260 # define OCSP_parse_url(url, host, port, path, ssl) \ argument
261 OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL)
295 X509_EXTENSION *OCSP_crlID_new(const char *url, long *n, char *tim);
H A Dx509.h.in361 X509 *X509_load_http(const char *url, BIO *bio, BIO *rbio, int timeout);
362 X509_CRL *X509_CRL_load_http(const char *url, BIO *bio, BIO *rbio, int timeout);
/openssl/test/
H A Dhttp_test.c252 static int test_http_url_ok(const char *url, int exp_ssl, const char *exp_host, in test_http_url_ok() argument
261 res = TEST_true(OSSL_HTTP_parse_url(url, &ssl, &user, &host, &port, &num, in test_http_url_ok()
283 static int test_http_url_path_query_ok(const char *url, const char *exp_path_qu) in test_http_url_path_query_ok() argument
288 res = TEST_true(OSSL_HTTP_parse_url(url, NULL, NULL, &host, NULL, NULL, in test_http_url_path_query_ok()
324 static int test_http_url_invalid(const char *url) in test_http_url_invalid() argument
330 res = TEST_false(OSSL_HTTP_parse_url(url, &ssl, NULL, &host, &port, &num, in test_http_url_invalid()
/openssl/apps/
H A Dtsget.in41 my $url = shift;
77 $curl->setopt(CURLOPT_URL, $url);
/openssl/crypto/x509/
H A Dx_all.c76 static ASN1_VALUE *simple_get_asn1(const char *url, BIO *bio, BIO *rbio, in simple_get_asn1() argument
79 BIO *mem = OSSL_HTTP_get(url, NULL /* proxy */, NULL /* no_proxy */, in simple_get_asn1()
90 X509 *X509_load_http(const char *url, BIO *bio, BIO *rbio, int timeout) in X509_load_http() argument
92 return (X509 *)simple_get_asn1(url, bio, rbio, timeout, in X509_load_http()
126 X509_CRL *X509_CRL_load_http(const char *url, BIO *bio, BIO *rbio, int timeout) in X509_CRL_load_http() argument
128 return (X509_CRL *)simple_get_asn1(url, bio, rbio, timeout, in X509_CRL_load_http()
/openssl/crypto/ocsp/
H A Docsp_ext.c360 X509_EXTENSION *OCSP_crlID_new(const char *url, long *n, char *tim) in OCSP_crlID_new() argument
367 if (url) { in OCSP_crlID_new()
370 if (!(ASN1_STRING_set(cid->crlUrl, url, -1))) in OCSP_crlID_new()
/openssl/external/perl/Text-Template-1.56/
H A DMETA.yml22 url: http://module-build.sourceforge.net/META-spec-v1.4.html
/openssl/doc/man1/
H A Dopenssl-ocsp.pod.in31 [B<-url> I<URL>]
162 =item B<-url> I<responder_url>
172 to use or "/" by default. This is equivalent to specifying B<-url> with scheme
318 or via external OCSP clients (if B<-port> or B<-url> is specified).
374 using the B<url> option.
477 -url http://ocsp.myhost.com/ -resp_text -respout resp.der
H A Dtsget.pod35 POST url HTTP/1.1
/openssl/apps/include/
H A Dapps.h293 ASN1_VALUE *app_http_get_asn1(const char *url, const char *proxy,
/openssl/crypto/objects/
H A Dobjects.txt893 !Cname netscape-base-url
895 !Cname netscape-revocation-url
897 !Cname netscape-ca-revocation-url
899 !Cname netscape-renewal-url
901 !Cname netscape-ca-policy-url
/openssl/crypto/err/
H A Dopenssl.txt782 HTTP_R_ERROR_PARSING_URL:101:error parsing url
789 HTTP_R_INVALID_URL_PATH:125:invalid url path
790 HTTP_R_INVALID_URL_SCHEME:124:invalid url scheme

Completed in 104 milliseconds