Home
last modified time | relevance | path

Searched refs:userinfo (Results 1 – 24 of 24) sorted by relevance

/third_party/node/deps/openssl/openssl/apps/
Dsrp.c240 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL; in srp_main() local
286 userinfo = opt_arg(); in srp_main()
474 || (userinfo in srp_main()
475 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) == NULL)) in srp_main()
557 || (userinfo in srp_main()
558 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) in srp_main()
/third_party/openssl/apps/
Dsrp.c240 char *passin = NULL, *passout = NULL, *gN = NULL, *userinfo = NULL; in srp_main() local
286 userinfo = opt_arg(); in srp_main()
474 || (userinfo in srp_main()
475 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) == NULL)) in srp_main()
557 || (userinfo in srp_main()
558 && ((row[DB_srpinfo] = OPENSSL_strdup(userinfo)) in srp_main()
/third_party/ffmpeg/libavformat/
Durl.h353 const char *userinfo; /**< including final '@' if present */ member
363 #define url_component_end_authority userinfo
Durl.c111 uc->userinfo = cur; in ff_url_decompose()
133 uc->userinfo = uc->host = uc->port = cur; in ff_url_decompose()
/third_party/openssl/doc/man3/
DOSSL_HTTP_parse_url.pod49 C<[scheme://][userinfo@]host[:port][/path][?query][#fragment]> and splits it up
50 into scheme, userinfo, host, port, path, query, and fragment components.
63 For absent scheme, userinfo, port, query, and fragment components
DOSSL_HTTP_transfer.pod81 C<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>,
82 where any userinfo, path, query, and fragment given is ignored.
216 Any userinfo and fragment components in the I<url> are ignored.
DSRP_VBASE_new.pod50 flag base64(verifier) base64(salt) username gNid userinfo(optional)
/third_party/openssl/doc/man1/
Dopenssl-srp.pod.in20 [B<-userinfo> I<text>]
82 =item B<-userinfo>
Dopenssl-ocsp.pod.in34 [B<-proxy> I<[http[s]://][userinfo@]host[:port][/path]>]
164 The optional userinfo and fragment components are ignored.
174 =item B<-proxy> I<[http[s]://][userinfo@]host[:port][/path]>
180 as well as any userinfo and path components.
Dopenssl-s_server.pod.in77 [B<-proxy> I<[http[s]://][userinfo@]host[:port][/path]>]
507 =item B<-proxy> I<[http[s]://][userinfo@]host[:port][/path]>
513 as well as any userinfo and path components.
529 The optional userinfo and fragment URL components are ignored.
Dopenssl-cmp.pod.in50 [B<-server> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>]
51 [B<-proxy> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>]
454 =item B<-server> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>
463 The optional userinfo and fragment components are ignored.
467 =item B<-proxy> I<[http[s]://][userinfo@]host[:port][/path][?query][#fragment]>
473 selected by B<-tls_used>), as well as any path, userinfo, and query, and fragment
/third_party/python/Lib/urllib/
Dparse.py192 userinfo, have_info, hostinfo = netloc.rpartition('@')
194 username, have_password, password = userinfo.partition(':')
222 userinfo, have_info, hostinfo = netloc.rpartition(b'@')
224 username, have_password, password = userinfo.partition(b':')
Drequest.py784 userinfo, hostport = _splituser(authority)
785 if userinfo is not None:
786 user, password = _splitpasswd(userinfo)
/third_party/ffmpeg/libavformat/tests/
Durl.c41 PRINT_COMPONENT(userinfo); in test_decompose()
/third_party/curl/docs/
DURL-SYNTAX.md121 [scheme][divider][userinfo][hostname][port number][path][query][fragment]
150 The userinfo field can be used to set user name and password for
156 userinfo field. They are provided as a semicolon after the password and then
/third_party/curl/docs/libcurl/
Dcurl_url_get.md136 userinfo part. It is only recognized/used when parsing URLs for the following
Dcurl_url_set.md100 userinfo part. It is only recognized/used when parsing URLs for the following
/third_party/nghttp2/src/
Dshrpx_http2_session.cc705 if (!proxy.userinfo.empty()) { in downstream_connect_proxy()
707 req += base64::encode(std::begin(proxy.userinfo), std::end(proxy.userinfo)); in downstream_connect_proxy()
Dshrpx_config.h657 StringRef userinfo; member
Dshrpx_config.cc3296 proxy.userinfo = util::percent_decode(config->balloc, uf); in parse_config()
/third_party/ffmpeg/tests/ref/fate/
Durl6 userinfo: user:pass@
/third_party/python/Doc/howto/
Durllib2.rst527 NOT contain the "userinfo" component - for example ``"joe:password@example.com"`` is
/third_party/python/Doc/library/
Durllib.request.rst988 authority must not contain a userinfo component (so, ``"python.org"`` and
/third_party/NuttX/
DReleaseNotes33458 * [#7998](https://github.com/apache/nuttx/pull/7998) libc: passwd: add pw_gecos field(userinfo)