Home
last modified time | relevance | path

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

12

/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
30 url = https://github.com/cloudflare/quiche
33 url = https://github.com/openssl/fuzz-corpora
/openssl/apps/lib/
H A Dhttp_server.c272 char *meth, *url, *end; in http_server_get_asn1_req() local
339 url = meth = reqbuf; in http_server_get_asn1_req()
344 url[-1] = '\0'; in http_server_get_asn1_req()
345 while (*url == ' ') in http_server_get_asn1_req()
346 url++; in http_server_get_asn1_req()
347 if (*url != '/') { in http_server_get_asn1_req()
350 meth, url); in http_server_get_asn1_req()
354 url++; in http_server_get_asn1_req()
382 len = urldecode(url); in http_server_get_asn1_req()
408 while (*url == '/') in http_server_get_asn1_req()
[all …]
/openssl/demos/certs/
H A Docspquery.sh19 -url http://127.0.0.1:8888/
21 -url http://127.0.0.1:8888/
23 -url http://127.0.0.1:8888/
28 -CAfile root.pem -url http://127.0.0.1:8888/
/openssl/crypto/http/
H A Dhttp_lib.c53 int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost, in OSSL_parse_url() argument
76 if (url == NULL) { in OSSL_parse_url()
82 scheme = scheme_end = url; in OSSL_parse_url()
83 p = strstr(url, "://"); in OSSL_parse_url()
85 p = url; in OSSL_parse_url()
199 int OSSL_HTTP_parse_url(const char *url, int *pssl, char **puser, char **phost, in OSSL_HTTP_parse_url() argument
209 if (!OSSL_parse_url(url, &scheme, puser, phost, &port, pport_num, in OSSL_HTTP_parse_url()
H A Dhttp_client.c1211 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy, in OSSL_HTTP_get() argument
1227 if (url == NULL) { in OSSL_HTTP_get()
1231 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,
52 OSSL_parse_url() parses its input string I<url> as a URL of the form
62 I<ppath>, I<pquery>, and I<pfrag>, is assigned the respective url component.
80 Calling the deprecated function OCSP_parse_url(url, host, port, path, ssl)
82 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,
226 else from the server contained in the I<url>, and returns it as a BIO.
229 If I<bio> is non-NULL, any host and port components in the I<url> are not used
231 Any userinfo and fragment components in the I<url> are ignored.
233 If the scheme component of the I<url> is C<https> a TLS connection is requested
/openssl/include/openssl/
H A Dhttp.h82 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
101 int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost,
104 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);
/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/.github/workflows/
H A Dprovider-compatibility.yml34 # `url' is the download URL.
38 url: "https://www.openssl.org/source/old/3.0/openssl-3.0.0.tar.gz",
43 url: "https://www.openssl.org/source/openssl-3.0.8.tar.gz",
48 url: "https://www.openssl.org/source/openssl-3.0.9.tar.gz",
53 url: "https://www.openssl.org/source/openssl-3.1.2.tar.gz",
62 run: wget --no-verbose ${{ matrix.release.url }}
H A Dprov-compat-label.yml30 # `url' is the download URL.
34 url: "https://www.openssl.org/source/old/3.0/openssl-3.0.0.tar.gz",
39 url: "https://www.openssl.org/source/openssl-3.0.8.tar.gz",
44 url: "https://www.openssl.org/source/openssl-3.0.9.tar.gz",
49 url: "https://www.openssl.org/source/openssl-3.1.2.tar.gz",
58 run: wget --no-verbose ${{ matrix.release.url }}
H A Drun_quic_interop.yml31 , url: "https://github.com/openssl/openssl"
H A Dwindows.yml54 url: "https://download.sysinternals.com/files/Coreinfo.zip"
116 url: "https://download.sysinternals.com/files/Coreinfo.zip"
153 url: "https://download.sysinternals.com/files/Coreinfo.zip"
H A Dstatic-analysis-on-prem.yml39 …run: cov-commit-defects --url https://coverity.openssl.org:443 --stream OpenSSL --dir cov-int --au…
H A Dwindows_comp.yml64 url: "https://download.sysinternals.com/files/Coreinfo.zip"
123 url: "https://download.sysinternals.com/files/Coreinfo.zip"
H A Dos-zoo.yml158 url: "https://download.sysinternals.com/files/Coreinfo.zip"
/openssl/apps/
H A Dtsget.in41 my $url = shift;
77 $curl->setopt(CURLOPT_URL, $url);
/openssl/test/ocsp-tests/
H A Dca.cnf18 # we use the s_server option "-status_url" to specify the url.
/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/crypto/x509/
H A Dx_all.c115 static ASN1_VALUE *simple_get_asn1(const char *url, BIO *bio, BIO *rbio, in simple_get_asn1() argument
119 BIO *mem = OSSL_HTTP_get(url, NULL /* proxy */, NULL /* no_proxy */, in simple_get_asn1()
133 X509 *X509_load_http(const char *url, BIO *bio, BIO *rbio, int timeout) in X509_load_http() argument
135 return (X509 *)simple_get_asn1(url, bio, rbio, timeout, in X509_load_http()
187 X509_CRL *X509_CRL_load_http(const char *url, BIO *bio, BIO *rbio, int timeout) in X509_CRL_load_http() argument
189 return (X509_CRL *)simple_get_asn1(url, bio, rbio, timeout, in X509_CRL_load_http()
/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>]
168 =item B<-url> I<responder_url>
185 This is equivalent to specifying B<-url> with scheme
332 or via external OCSP clients (if B<-port> or B<-url> is specified).
389 The port may also be specified using the B<-url> option.
492 -url http://ocsp.myhost.com/ -resp_text -respout resp.der
/openssl/apps/include/
H A Dapps.h295 ASN1_VALUE *app_http_get_asn1(const char *url, const char *proxy,

Completed in 77 milliseconds

12