Home
last modified time | relevance | path

Searched +full:openssl +full:- +full:no +full:- +full:proxy (Results 1 – 25 of 175) sorted by relevance

1234567

/external/curl/.circleci/
Dconfig.yml21 # SPDX-License-Identifier: curl
27 …ersion of CircleCI pipeline process engine. See: https://circleci.com/docs/configuration-reference/
31 install-cares:
33 - run:
35 sudo apt-get update && sudo apt-get install -y libc-ares-dev
37 install-libssh:
39 - run:
41 sudo apt-get update && sudo apt-get install -y libssh-dev
43 install-deps:
45 - run:
[all …]
/external/boringssl/src/crypto/x509/
Dx509_txt.cc2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the OpenSSL license (the "License"). You may not use
7 * https://www.openssl.org/source/license.html
10 #include <openssl/x509.h>
63 return "invalid non-CA certificate (has CA markings)"; in X509_verify_cert_error_string()
67 return "proxy path length constraint exceeded"; in X509_verify_cert_error_string()
69 return "proxy certificates not allowed, please set the appropriate flag"; in X509_verify_cert_error_string()
101 return "no explicit policy"; in X509_verify_cert_error_string()
137 return "Issuer has name constraints but leaf has no SANs"; in X509_verify_cert_error_string()
/external/curl/docs/cmdline-opts/
D_ENVIRONMENT.md1 <!-- Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. -->
2 <!-- SPDX-License-Identifier: curl -->
8 Using an environment variable to set the proxy has the same effect as using
9 the --proxy option.
12 Sets the proxy server to use for HTTP.
15 Sets the proxy server to use for HTTPS.
17 ## `[url-protocol]_PROXY` [protocol://]<host>[:port]
18 Sets the proxy server to use for [url-protocol], where the protocol is a
23 Sets the proxy server to use if no protocol-specific proxy is set.
25 ## `NO_PROXY` <comma-separated list of hosts/domains>
[all …]
Dproxy.md1 ---
3 SPDX-License-Identifier: curl
4 Long: proxy
7 Help: Use this proxy
8 Category: proxy
11 See-also:
12 - socks5
13 - proxy-basic
15 - --proxy http://proxy.example $URL
16 ---
[all …]
/external/curl/docs/
Dcurl.18 .\" * Copyright (C) 1998 \- 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
27 curl \- transfer a URL
37 curl offers a busload of useful tricks like proxy support, user
42 curl is powered by libcurl for all transfer-related features. See
45 The URL syntax is protocol-dependent. You find a detailed description in
55 "ftp://ftp.example.com/file[1-100].txt"
57 "ftp://ftp.example.com/file[001-100].txt" (with leading zeros)
59 "ftp://ftp.example.com/file[a-z].txt"
64 "http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html"
73 "http://example.com/file[1-100:10].txt"
[all …]
/external/libwebsockets/
Dchangelog2 ---------
7 - Add full CBOR stream parsing and writing support, with huge
9 See ./READMEs/README.cbor-lecp.md
10 - Add COSE key and signing / validation support with huge amount of
14 See ./READMEs/README.cbor-cose.md
15 - JIT Trust: for constrained devices, provides a way to determine the
19 See ./READMEs/README.jit-trust.md
20 - Add support for client Netscape cookie jar with caching
21 - Secure Streams: issue LWSSSCS_EVENT_WAIT_CANCELLED state() when
22 lws_cancel_service() called, so cross-thread events can be handled
[all …]
/external/curl/tests/http/
Dtest_10_proxy.py2 # -*- coding: utf-8 -*-
23 # SPDX-License-Identifier: curl
48 env.make_data_file(indir=env.gen_dir, fname="data-100k", fsize=100*1024)
49 env.make_data_file(indir=env.gen_dir, fname="data-10m", fsize=10*1024*1024)
61 # download via http: proxy (no tunnel)
69 # download via https: proxy (no tunnel)
70 @pytest.mark.skipif(condition=not Env.curl_has_feature('HTTPS-proxy'),
71 reason='curl lacks HTTPS-proxy support')
84 # upload via https: with proto (no tunnel)
89 ['data-100k', 5],
[all …]
/external/curl/docs/libcurl/opts/
DCURLOPT_PROXY.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - CURLOPT_HTTPPROXYTUNNEL (3)
9 - CURLOPT_PRE_PROXY (3)
10 - CURLOPT_PROXYPORT (3)
11 - CURLOPT_PROXYTYPE (3)
13 - All
14 Added-in: 7.1
15 ---
[all …]
DCURLOPT_PROXY_CRLFILE.md1 ---
3 SPDX-License-Identifier: curl
7 See-also:
8 - CURLOPT_PROXY_SSL_VERIFYHOST (3)
9 - CURLOPT_PROXY_SSL_VERIFYPEER (3)
10 - CURLOPT_SSL_VERIFYHOST (3)
11 - CURLOPT_SSL_VERIFYPEER (3)
13 - TLS
14 TLS-backend:
15 - GnuTLS
[all …]
/external/libwebsockets/READMEs/
DREADME.lwsws.md6 lwsws is an implementation of a very lightweight, ws-capable generic web
15 Just enable -DLWS_WITH_LWSWS=1 at cmake-time.
19 NOTICE on Ubuntu, the default libuv package is called "libuv-0.10". This is ancient.
21 You should replace this with libuv1 and libuv1-dev before proceeding.
27 - '#' may be used to turn the rest of the line into a comment.
29 - There's also a single substitution, if a string contains "_lws_ddir_", then that is
46 "count-threads": "1",
47 "server-string": "myserver v1", # returned in http headers
48 "ws-pingpong-secs": "200", # confirm idle established ws connections this often
49 "init-ssl": "yes"
[all …]
/external/python/google-auth-library-python/google/auth/transport/
Durllib3.py7 # http://www.apache.org/licenses/LICENSE-2.0
26 # http://urllib3.readthedocs.io/en/latest/user-guide.html\
27 # #certificate-verification
31 except ImportError: # pragma: NO COVER
36 except ImportError as caught_exc: # pragma: NO COVER
47 import urllib3.exceptions # pylint: disable=ungrouped-imports
157 See https://github.com/urllib3/urllib3/issues/474#issuecomment-253168415
168 OpenSSL.crypto.Error: If the cert or key is invalid.
171 from OpenSSL import crypto
267 This is used when a self-signed JWT is created from service
[all …]
/external/boringssl/src/ssl/test/
Dhandshake_util.h9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 #include <openssl/base.h>
53 // The protocol between the proxy and the handshaker is defined by these
54 // single-character prefixes. |kControlMsgDone| uses 'H' for compatibility with
57 constexpr char kControlMsgWriteCompleted = 'W'; // Proxy has sent data
58 constexpr char kControlMsgDone = 'H'; // Proxy should resume control
61 // The protocol between the proxy and handshaker uses these file descriptors.
62 constexpr int kFdControl = 3; // Bi-directional dgram socket.
63 constexpr int kFdProxyToHandshaker = 4; // Uni-directional pipe.
64 constexpr int kFdHandshakerToProxy = 5; // Uni-directional pipe.
/external/cronet/stable/third_party/boringssl/src/fuzz/conf_corpus/
Dc06bb154438af6218b8f58bc0f70520674fb30902 # OpenSSL example configuration file.
18 # To use this configuration file with the "-extfile" option of the
19 # "openssl x509" utility, name here the section containing the
49 #unique_subject = no # Set to 'no' to allow creation of
78 preserve = no # keep passed DN ordering
82 # and supplied fields are just that :-)
122 # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
136 stateOrProvinceName_default = Some-State
143 # we can do this but it is not needed normally :-)
156 # SET-ex3 = SET extension number 3
[all …]
D48380f4be820e22599410baa62bb004274cbfac22 # OpenSSL example configuration file.
18 # To use this configuration file with the "-extfile" option of the
19 # "openssl x509" utility, name here the section containing the
49 #unique_subject = no # Set to 'no' to allow creation of
78 preserve = no # keep passed DN ordering
82 # and supplied fields are just that :-)
122 # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
136 stateOrProvinceName_default = Some-State
143 # we can do this but it is not needed normally :-)
156 # SET-ex3 = SET extension number 3
[all …]
D170c6e9fa613ab2781f872c57cd2c59fc01e07676 crypto_device = builtin # OpenSSL engine to use for signing
20 # (optional, default: no)
22 # (optional, default: no)
23 ess_cert_id_chain = no # Must the ESS cert id chain be included?
24 # (optional, default: no)
29 # OpenSSL example configuration file.
45 # To use this configuration file with the "-extfile" option of the
46 # "openssl x509" utility, name here the section containing the
76 #unique_subject = no # Set to 'no' to allow creation of
105 preserve = no # keep passed DN ordering
[all …]
/external/cronet/tot/third_party/boringssl/src/fuzz/conf_corpus/
D48380f4be820e22599410baa62bb004274cbfac22 # OpenSSL example configuration file.
18 # To use this configuration file with the "-extfile" option of the
19 # "openssl x509" utility, name here the section containing the
49 #unique_subject = no # Set to 'no' to allow creation of
78 preserve = no # keep passed DN ordering
82 # and supplied fields are just that :-)
122 # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
136 stateOrProvinceName_default = Some-State
143 # we can do this but it is not needed normally :-)
156 # SET-ex3 = SET extension number 3
[all …]
Dc06bb154438af6218b8f58bc0f70520674fb30902 # OpenSSL example configuration file.
18 # To use this configuration file with the "-extfile" option of the
19 # "openssl x509" utility, name here the section containing the
49 #unique_subject = no # Set to 'no' to allow creation of
78 preserve = no # keep passed DN ordering
82 # and supplied fields are just that :-)
122 # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
136 stateOrProvinceName_default = Some-State
143 # we can do this but it is not needed normally :-)
156 # SET-ex3 = SET extension number 3
[all …]
D170c6e9fa613ab2781f872c57cd2c59fc01e07676 crypto_device = builtin # OpenSSL engine to use for signing
20 # (optional, default: no)
22 # (optional, default: no)
23 ess_cert_id_chain = no # Must the ESS cert id chain be included?
24 # (optional, default: no)
29 # OpenSSL example configuration file.
45 # To use this configuration file with the "-extfile" option of the
46 # "openssl x509" utility, name here the section containing the
76 #unique_subject = no # Set to 'no' to allow creation of
105 preserve = no # keep passed DN ordering
[all …]
De455aa989be06525bd8cf5ab6d8f5406a973534710 # OpenSSL example configuration file.
26 # To use this configuration file with the "-extfile" option of the
27 # "openssl x509" utility, name here the section containing the
57 #unique_subject = no # Set to 'no' to allow creation of
86 preserve = no # keep passed DN ordering
90 # and supplied fields are just that :-)
130 # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
144 stateOrProvinceName_default = Some-State
151 # we can do this but it is not needed normally :-)
164 # SET-ex3 = SET extension number 3
[all …]
/external/mbedtls/tests/
Dssl-opt.sh3 # ssl-opt.sh
6 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
21 set -u
25 ulimit -f 20971520
37 : ${OPENSSL:=openssl}
38 : ${GNUTLS_CLI:=gnutls-cli}
39 : ${GNUTLS_SERV:=gnutls-serv}
42 # The OPENSSL variable used to be OPENSSL_CMD for historical reasons.
47 if [ "$OPENSSL_CMD" != "$OPENSSL" ]; then
48 echo "Please use OPENSSL instead of OPENSSL_CMD." >&2
[all …]
/external/openthread/third_party/mbedtls/repo/tests/
Dssl-opt.sh3 # ssl-opt.sh
6 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
21 set -u
25 ulimit -f 20971520
37 : ${OPENSSL:=openssl}
38 : ${GNUTLS_CLI:=gnutls-cli}
39 : ${GNUTLS_SERV:=gnutls-serv}
42 # The OPENSSL variable used to be OPENSSL_CMD for historical reasons.
47 if [ "$OPENSSL_CMD" != "$OPENSSL" ]; then
48 echo "Please use OPENSSL instead of OPENSSL_CMD." >&2
[all …]
/external/cronet/stable/third_party/boringssl/src/ssl/test/
Dhandshake_util.h9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 #include <openssl/base.h>
53 // The protocol between the proxy and the handshaker is defined by these
54 // single-character prefixes. |kControlMsgDone| uses 'H' for compatibility with
57 constexpr char kControlMsgWriteCompleted = 'W'; // Proxy has sent data
58 constexpr char kControlMsgDone = 'H'; // Proxy should resume control
61 // The protocol between the proxy and handshaker uses these file descriptors.
62 constexpr int kFdControl = 3; // Bi-directional dgram socket.
63 constexpr int kFdProxyToHandshaker = 4; // Uni-directional pipe.
64 constexpr int kFdHandshakerToProxy = 5; // Uni-directional pipe.
/external/cronet/tot/third_party/boringssl/src/ssl/test/
Dhandshake_util.h9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 #include <openssl/base.h>
53 // The protocol between the proxy and the handshaker is defined by these
54 // single-character prefixes. |kControlMsgDone| uses 'H' for compatibility with
57 constexpr char kControlMsgWriteCompleted = 'W'; // Proxy has sent data
58 constexpr char kControlMsgDone = 'H'; // Proxy should resume control
61 // The protocol between the proxy and handshaker uses these file descriptors.
62 constexpr int kFdControl = 3; // Bi-directional dgram socket.
63 constexpr int kFdProxyToHandshaker = 4; // Uni-directional pipe.
64 constexpr int kFdHandshakerToProxy = 5; // Uni-directional pipe.
/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/ssl/test/
Dhandshake_util.h9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 #include <openssl/base.h>
53 // The protocol between the proxy and the handshaker is defined by these
54 // single-character prefixes. |kControlMsgDone| uses 'H' for compatibility with
57 constexpr char kControlMsgWriteCompleted = 'W'; // Proxy has sent data
58 constexpr char kControlMsgDone = 'H'; // Proxy should resume control
61 // The protocol between the proxy and handshaker uses these file descriptors.
62 constexpr int kFdControl = 3; // Bi-directional dgram socket.
63 constexpr int kFdProxyToHandshaker = 4; // Uni-directional pipe.
64 constexpr int kFdHandshakerToProxy = 5; // Uni-directional pipe.
/external/grpc-grpc-java/testing/src/main/resources/certs/
Dopenssl.cnf2 # OpenSSL example configuration file.
15 # To use this configuration file with the "-extfile" option of the
16 # "openssl x509" utility, name here the section containing the
46 #unique_subject = no # Set to 'no' to allow creation of
76 preserve = no # keep passed DN ordering
80 # and supplied fields are just that :-)
120 # nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
134 stateOrProvinceName_default = Some-State
141 # we can do this but it is not needed normally :-)
154 # SET-ex3 = SET extension number 3
[all …]

1234567