Home
last modified time | relevance | path

Searched refs:auth_params (Results 1 – 25 of 273) sorted by relevance

1234567891011

/dports/www/p5-LWP-Authen-OAuth/LWP-Authen-OAuth-1.02/lib/LWP/Authen/
H A DOAuth.pm285 my %auth_params = @auth_params;
286 if( !exists($auth_params{oauth_nonce}) )
288 push @auth_params, oauth_nonce => oauth_nonce();
290 if( !exists($auth_params{oauth_timestamp}) )
292 push @auth_params, oauth_timestamp => time();
294 if( !exists($auth_params{oauth_version}) )
296 push @auth_params, oauth_version => '1.0';
302 push @auth_params, $_ => $self->{$_};
307 push @params, @auth_params;
345 push @auth_params,
[all …]
/dports/devel/py-resource/Resource-0.2.1/rsrc/
H A Dauth.py12 def check_auth(self, method, auth_params=None): argument
26 def check_auth(self, method, auth_params=None): argument
30 auth_params = auth_params or {}
31 if not self.authenticated(method, auth_params):
41 def authenticated(self, method, auth_params): argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/network/
H A Dnetwork_service_unittest.cc210 mojom::HttpAuthStaticParamsPtr auth_params = in TEST_F() local
253 mojom::HttpAuthStaticParamsPtr auth_params = in TEST_F() local
273 auth_params->server_allowlist = "server1"; in TEST_F()
295 auth_params->server_allowlist = "server2"; in TEST_F()
380 auth_params->delegate_by_kdc_policy = true; in TEST_F()
427 auth_params->enable_negotiate_port = true; in TEST_F()
445 auth_params->enable_negotiate_port = false; in TEST_F()
453 auth_params->enable_negotiate_port = true; in TEST_F()
795 auth_params->ntlm_v2_enabled = false; in TEST_F()
812 auth_params->ntlm_v2_enabled = true; in TEST_F()
[all …]
/dports/net/p5-Net-Google-Analytics/Net-Google-Analytics-3.03/lib/Net/Google/
H A DAnalytics.pm23 sub auth_params { subroutine
26 my $auth_params = $self->{auth_params} || [];
29 $self->{auth_params} = [ @_ ];
32 return @$auth_params;
38 $self->{auth_params} = [
94 my @auth_params = $self->auth_params;
96 return $self->user_agent->get($uri->as_string, @auth_params);
/dports/security/py-authlib/Authlib-0.15.5/authlib/oauth1/rfc5849/
H A Dwrapper.py34 self.auth_params, self.realm = _parse_authorization_header(headers)
36 self.query_params, self.body_params, self.auth_params)
41 params.extend(self.auth_params)
101 auth_params = [(unescape(k), unescape(v)) for k, v in items]
102 realm = dict(auth_params).get('realm')
103 return auth_params, realm
109 def _parse_oauth_params(query_params, body_params, auth_params): argument
113 (SIGNATURE_TYPE_HEADER, list(_filter_oauth(auth_params)))
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/services/network/
H A Dnetwork_service_unittest.cc203 mojom::HttpAuthStaticParamsPtr auth_params = in TEST_F() local
246 mojom::HttpAuthStaticParamsPtr auth_params = in TEST_F() local
266 auth_params->server_allowlist = "server1"; in TEST_F()
288 auth_params->server_allowlist = "server2"; in TEST_F()
373 auth_params->delegate_by_kdc_policy = true; in TEST_F()
420 auth_params->enable_negotiate_port = true; in TEST_F()
438 auth_params->enable_negotiate_port = false; in TEST_F()
446 auth_params->enable_negotiate_port = true; in TEST_F()
817 auth_params->ntlm_v2_enabled = false; in TEST_F()
834 auth_params->ntlm_v2_enabled = true; in TEST_F()
[all …]
/dports/devel/py-circuits/circuits-3.2/circuits/web/
H A D_httpauth.py150 def _parseDigestAuthorization(auth_params): argument
152 items = parse_http_list(auth_params)
174 def _parseBasicAuthorization(auth_params): argument
175 auth_params = auth_params.encode("utf-8")
176 username, password = base64_decodebytes(auth_params).split(b":", 1)
192 auth_scheme, auth_params = credentials.split(" ", 1)
196 params = parser(auth_params)
/dports/devel/libsoup/libsoup-2.74.0/libsoup/
H A Dsoup-auth-digest.c137 GHashTable *auth_params) in soup_auth_digest_update() argument
151 priv->domain = g_strdup (g_hash_table_lookup (auth_params, "domain")); in soup_auth_digest_update()
152 priv->nonce = g_strdup (g_hash_table_lookup (auth_params, "nonce")); in soup_auth_digest_update()
153 priv->opaque = g_strdup (g_hash_table_lookup (auth_params, "opaque")); in soup_auth_digest_update()
155 qop = g_hash_table_lookup (auth_params, "qop"); in soup_auth_digest_update()
169 stale = g_hash_table_lookup (auth_params, "stale"); in soup_auth_digest_update()
383 GHashTable *auth_params; in authentication_info_cb() local
395 auth_params = soup_header_parse_param_list (header); in authentication_info_cb()
396 if (!auth_params) in authentication_info_cb()
399 nextnonce = g_strdup (g_hash_table_lookup (auth_params, "nextnonce")); in authentication_info_cb()
[all …]
/dports/devel/libsoup3/libsoup-3.0.3/libsoup/auth/
H A Dsoup-auth-digest.c142 GHashTable *auth_params) in soup_auth_digest_update() argument
156 priv->domain = g_strdup (g_hash_table_lookup (auth_params, "domain")); in soup_auth_digest_update()
157 priv->nonce = g_strdup (g_hash_table_lookup (auth_params, "nonce")); in soup_auth_digest_update()
158 priv->opaque = g_strdup (g_hash_table_lookup (auth_params, "opaque")); in soup_auth_digest_update()
160 qop = g_hash_table_lookup (auth_params, "qop"); in soup_auth_digest_update()
174 stale = g_hash_table_lookup (auth_params, "stale"); in soup_auth_digest_update()
389 GHashTable *auth_params; in authentication_info_cb() local
401 auth_params = soup_header_parse_param_list (header); in authentication_info_cb()
402 if (!auth_params) in authentication_info_cb()
405 nextnonce = g_strdup (g_hash_table_lookup (auth_params, "nextnonce")); in authentication_info_cb()
[all …]
/dports/devel/py-pycognito/pycognito-2021.12.0/pycognito/
H A Daws_srp.py185 auth_params = {
190 auth_params.update(
197 return auth_params
248 auth_params = self.get_auth_params()
251 AuthParameters=auth_params,
275 auth_params = self.get_auth_params()
278 AuthParameters=auth_params,
/dports/devel/glib20/glib-2.70.4/glib/
H A Dguri.c215 gchar *auth_params; member
249 g_free (uri->auth_params); in g_uri_clear()
726 else if (auth_params) in parse_userinfo()
727 *auth_params = NULL; in parse_userinfo()
852 if (auth_params) in g_uri_split_internal()
853 *auth_params = NULL; in g_uri_split_internal()
1517 uri->auth_params = g_strdup (base_uri->auth_params); in g_uri_parse_relative()
1673 if (auth_params) in g_uri_join_internal()
1944 uri->auth_params = g_strdup (auth_params); in g_uri_build_with_user()
1959 if (auth_params) in g_uri_build_with_user()
[all …]
/dports/deskutils/egroupware/egroupware/vendor/imsglobal/lti-1p3-tool/src/lti/
H A DLTI_OIDC_Login.php72 $auth_params = [
87 $auth_params['lti_message_hint'] = $request['lti_message_hint'];
90 …auth_login_return_url = $registration->get_auth_login_url() . "?" . http_build_query($auth_params);
/dports/net-im/loudmouth/loudmouth-1.5.4/loudmouth/
H A Dlm-sasl.c66 LmAuthParameters *auth_params; member
324 strcpy(features+4, lm_auth_parameters_get_username (sasl->auth_params)); in sasl_gssapi_handle_challenge()
521 if (sasl->auth_params == NULL) { in sasl_md5_prepare_response()
561 lm_auth_parameters_get_username (sasl->auth_params), in sasl_md5_prepare_response()
925 if (sasl->auth_params == NULL) { in sasl_start()
937 g_string_append (str, lm_auth_parameters_get_username (sasl->auth_params)); in sasl_start()
1104 LmAuthParameters *auth_params, in lm_sasl_authenticate() argument
1108 sasl->auth_params = lm_auth_parameters_ref (auth_params); in lm_sasl_authenticate()
1148 if (sasl->auth_params) { in lm_sasl_free()
1149 lm_auth_parameters_unref (sasl->auth_params); in lm_sasl_free()
[all …]
H A Dlm-connection.c176 LmAuthParameters *auth_params,
574 connection_create_auth_req_msg (LmAuthParameters *auth_params) in connection_create_auth_req_msg() argument
592 LmAuthParameters *auth_params, in connection_create_auth_msg() argument
646 LmAuthParameters *auth_params = (LmAuthParameters *) user_data; in connection_auth_req_reply() local
1417 LmAuthParameters *auth_params; in lm_connection_authenticate() local
1425 auth_params = lm_auth_parameters_new (username, password, resource); in lm_connection_authenticate()
1455 lm_sasl_authenticate (connection->sasl, auth_params, domain, in lm_connection_authenticate()
1469 ret_val = connection_old_auth (connection, auth_params, error); in lm_connection_authenticate()
1472 lm_auth_parameters_unref (auth_params); in lm_connection_authenticate()
1479 LmAuthParameters *auth_params, in connection_old_auth() argument
[all …]
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/module_utils/k8s/
H A Dcommon.py160 def get_api_client(self, **auth_params): argument
161 auth_params = auth_params or getattr(self, 'params', {})
166 if auth_params.get(arg_name) is None:
173 auth[true_name] = auth_params[arg_name]
/dports/net-im/p5-Net-XMPP/Net-XMPP-1.05/t/
H A Dsrv.t24 my $auth_params = get_auth_params( $test_account );
25 my $my_full_jid = bare_jid( $test_account ) . '/' . $auth_params->{'resource'};
40 $client->Execute( %{$auth_params}, %{$conn_params} );
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/glib-0.14.4/src/auto/
H A Duri.rs28 pub fn auth_params(&self) -> Option<crate::GString> { in auth_params() method
157 auth_params: Option<&str>, in build_with_user()
170 auth_params.to_glib_none().0, in build_with_user()
251 auth_params: Option<&str>, in join_with_user()
264 auth_params.to_glib_none().0, in join_with_user()
436 let mut auth_params = ptr::null_mut(); in split_with_user() localVariable
449 &mut auth_params, in split_with_user()
463 from_glib_full(auth_params), in split_with_user()
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/glib/src/auto/
H A Duri.rs28 pub fn auth_params(&self) -> Option<crate::GString> { in auth_params() method
157 auth_params: Option<&str>, in build_with_user()
170 auth_params.to_glib_none().0, in build_with_user()
251 auth_params: Option<&str>, in join_with_user()
264 auth_params.to_glib_none().0, in join_with_user()
436 let mut auth_params = ptr::null_mut(); in split_with_user() localVariable
449 &mut auth_params, in split_with_user()
463 from_glib_full(auth_params), in split_with_user()
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/glib-0.14.8/src/auto/
H A Duri.rs28 pub fn auth_params(&self) -> Option<crate::GString> { in auth_params() method
157 auth_params: Option<&str>, in build_with_user()
170 auth_params.to_glib_none().0, in build_with_user()
251 auth_params: Option<&str>, in join_with_user()
264 auth_params.to_glib_none().0, in join_with_user()
436 let mut auth_params = ptr::null_mut(); in split_with_user() localVariable
449 &mut auth_params, in split_with_user()
463 from_glib_full(auth_params), in split_with_user()
/dports/audio/gnome-podcasts/podcasts-c86f7bfdef7692bbf20f315a90450321f6ca9ce7/cargo-crates/glib-0.14.8/src/auto/
H A Duri.rs28 pub fn auth_params(&self) -> Option<crate::GString> { in auth_params() method
157 auth_params: Option<&str>, in build_with_user()
170 auth_params.to_glib_none().0, in build_with_user()
251 auth_params: Option<&str>, in join_with_user()
264 auth_params.to_glib_none().0, in join_with_user()
436 let mut auth_params = ptr::null_mut(); in split_with_user() localVariable
449 &mut auth_params, in split_with_user()
463 from_glib_full(auth_params), in split_with_user()
/dports/multimedia/neolink/neolink-cf54129/cargo-crates/glib-0.14.2/src/auto/
H A Duri.rs28 pub fn auth_params(&self) -> Option<crate::GString> { in auth_params() method
157 auth_params: Option<&str>, in build_with_user()
170 auth_params.to_glib_none().0, in build_with_user()
251 auth_params: Option<&str>, in join_with_user()
264 auth_params.to_glib_none().0, in join_with_user()
436 let mut auth_params = ptr::null_mut(); in split_with_user() localVariable
449 &mut auth_params, in split_with_user()
463 from_glib_full(auth_params), in split_with_user()
/dports/x11/wmfocus/wmfocus-1.2.0/cargo-crates/glib-0.14.2/src/auto/
H A Duri.rs28 pub fn auth_params(&self) -> Option<crate::GString> { in auth_params() method
157 auth_params: Option<&str>, in build_with_user()
170 auth_params.to_glib_none().0, in build_with_user()
251 auth_params: Option<&str>, in join_with_user()
264 auth_params.to_glib_none().0, in join_with_user()
436 let mut auth_params = ptr::null_mut(); in split_with_user() localVariable
449 &mut auth_params, in split_with_user()
463 from_glib_full(auth_params), in split_with_user()
/dports/x11/sirula/sirula-1.0.0/cargo-crates/glib-0.14.8/src/auto/
H A Duri.rs28 pub fn auth_params(&self) -> Option<crate::GString> { in auth_params() method
157 auth_params: Option<&str>, in build_with_user()
170 auth_params.to_glib_none().0, in build_with_user()
251 auth_params: Option<&str>, in join_with_user()
264 auth_params.to_glib_none().0, in join_with_user()
436 let mut auth_params = ptr::null_mut(); in split_with_user() localVariable
449 &mut auth_params, in split_with_user()
463 from_glib_full(auth_params), in split_with_user()
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/tmhOAuth/
H A DtmhOAuth.php306 $this->auth_params = array_intersect_key($this->get_defaults(), $_signing_params);
308 $this->auth_params['oauth_callback'] = $_signing_params['oauth_callback'];
313 $this->auth_params['oauth_verifier'] = $_signing_params['oauth_verifier'];
370 uksort($this->auth_params, 'strcmp');
372 $this->request_params = array_merge($this->request_params, $this->auth_params);
376 foreach ($this->auth_params as $k => $v) {
403 $this->auth_params['oauth_signature'] = $this->safe_encode(
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/tmhOAuth/
H A DtmhOAuth.php306 $this->auth_params = array_intersect_key($this->get_defaults(), $_signing_params);
308 $this->auth_params['oauth_callback'] = $_signing_params['oauth_callback'];
313 $this->auth_params['oauth_verifier'] = $_signing_params['oauth_verifier'];
370 uksort($this->auth_params, 'strcmp');
372 $this->request_params = array_merge($this->request_params, $this->auth_params);
376 foreach ($this->auth_params as $k => $v) {
403 $this->auth_params['oauth_signature'] = $this->safe_encode(

1234567891011