Home
last modified time | relevance | path

Searched refs:password (Results 1 - 4 of 4) sorted by relevance

/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/
H A Dsettings.rs321 /// - set username and password to login proxy server.
433 /// Pass HTTPS to the proxy URL, and set username and password which is
441 /// let builder = Proxy::https("http://example.com").basic_auth("username", "password");
443 pub fn basic_auth(mut self, username: &str, password: &str) -> Self { in basic_auth()
445 proxy.basic_auth(username, password); in basic_auth()
596 .basic_auth("user", "password") in ut_proxy_clone()
/commonlibrary/ets_utils/js_api_module/url/
H A Djs_url.h34 BIT3 = 3, // 3:Bit 3 Set to true,The URL has password
52 std::string password = ""; member
70 void AnalysisUsernameAndPasswd(std::string& input, std::string& username, std::string& password,
154 * Sets the password portion of the URL��not include the port.
224 * Gets the password portion of the URL��not include the port.
H A Djs_url.cpp215 void AnalysisUsernameAndPasswd(std::string& input, std::string& username, std::string& password, in AnalysisUsernameAndPasswd() argument
248 password = keyWord; in AnalysisUsernameAndPasswd()
897 AnalysisUsernameAndPasswd(strHost, urlinfo.username, urlinfo.password, flags); in AnalyStrHost()
925 AnalysisUsernameAndPasswd(strHost, urlinfo.username, urlinfo.password, flags); in AnalysisNoDefaultProtocol()
962 AnalysisUsernameAndPasswd(strHost, urlinfo.username, urlinfo.password, flags); in AnalysisOnlyHost()
1013 AnalysisUsernameAndPasswd(strHost, urlinfo.username, urlinfo.password, flags); in ParsingHostAndPath()
1092 urlData.password = baseInfo.password; in BaseInfoToUrl()
1343 temp = urlData_.password; in GetPassword()
1684 urlData_.password in SetPassword()
[all...]
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Dproxy.rs76 pub(crate) fn basic_auth(&mut self, username: &str, password: &str) {
77 let auth = encode(format!("{username}:{password}").as_bytes());

Completed in 9 milliseconds