Home
last modified time | relevance | path

Searched refs:auth_value (Results 1 – 25 of 69) sorted by relevance

123

/dports/net/jgroups/jgroups-2.12.0/src/org/jgroups/auth/
H A DSimpleToken.java29 private String auth_value = null; field in SimpleToken
36 this.auth_value = authvalue; in SimpleToken()
44 return auth_value; in getAuthValue()
47 public void setAuthValue(String auth_value) { in setAuthValue() argument
48 this.auth_value = auth_value; in setAuthValue()
56 if ((this.auth_value != null) && (serverToken.auth_value != null) in authenticate()
57 && (this.auth_value.equalsIgnoreCase(serverToken.auth_value))) { in authenticate()
87 Util.writeString(this.auth_value, out); in writeTo()
103 this.auth_value = Util.readString(in); in readFrom()
H A DMD5Token.java31 private String auth_value = null; field in MD5Token
42 this.auth_value = hash(authvalue); in MD5Token()
46 this.auth_value = hash(authvalue); in MD5Token()
59 return auth_value; in getAuthValue()
62 public void setAuthValue(String auth_value) { in setAuthValue() argument
63 this.auth_value = auth_value; in setAuthValue()
103 if ((this.auth_value != null) && (serverToken.auth_value != null) in authenticate()
104 && (this.auth_value.equalsIgnoreCase(serverToken.auth_value))) { in authenticate()
128 Util.writeString(this.auth_value, out); in writeTo()
136 this.auth_value = Util.readString(in); in readFrom()
H A DX509Token.java72 private String auth_value = null; field in X509Token
131 if ((serverBytes.equalsIgnoreCase(this.auth_value))) { in authenticate()
187 this.encryptedToken = this.cipher.doFinal(this.auth_value.getBytes()); in setCertificate()
/dports/security/py-stem/stem-1.8.0/test/integ/connection/
H A Dauthentication.py249 auth_value = test.runner.CONTROL_PASSWORD
252 self._check_auth(auth_type, auth_value)
259 for auth_value in ('', 'blarg', 'this has a " in it'):
261 self._check_auth(auth_type, auth_value)
298 if not os.path.exists(auth_value):
307 self._check_auth(auth_type, auth_value)
321 fake_cookie = open(auth_value, 'w')
329 self._check_auth(auth_type, auth_value)
346 os.remove(auth_value)
367 auth_value = test.runner.get_runner().get_torrc_path(True)
[all …]
/dports/www/fswiki/wiki3_6_2/lib/LWP/Authen/
H A DNtlm.pm47 my $auth_value = "NTLM " . ntlm();
55 ++$retry_count if ($auth && $auth eq $auth_value);
66 $referral->header($auth_header => $auth_value);
67 LWP::Debug::debug("Returning response object with auth header:\n$auth_header $auth_value");
76 my $auth_value;
88 $auth_value = "NTLM " . ntlm($challenge);
93 $referral->header($auth_header => $auth_value);
94 LWP::Debug::debug("Returning response object with auth header:\n$auth_header $auth_value");
H A DBasic.pm16 my $auth_value = "Basic " . MIME::Base64::encode("$user:$pass", "");
22 if ($auth && $auth eq $auth_value) {
32 $referral->header($auth_header => $auth_value);
H A DDigest.pm67 my $auth_value = "Digest " . join(", ", @pairs);
83 $referral->header($auth_header => $auth_value);
/dports/www/p5-libwww/libwww-perl-6.59/lib/LWP/Authen/
H A DNtlm.pm42 my $auth_value = "NTLM " . ntlm();
50 ++$retry_count if ($auth && $auth eq $auth_value);
61 $referral->header($auth_header => $auth_value);
69 my $auth_value;
80 $auth_value = "NTLM " . ntlm($challenge);
85 $referral->header($auth_header => $auth_value);
H A DDigest.pm76 my $auth_value = "Digest " . join(", ", @pairs);
77 return $auth_value;
H A DBasic.pm45 my $auth_value = $class->auth_header($user, $pass, $req, $ua, $h);
46 $req->header($auth_header => $auth_value);
/dports/www/flexget/Flexget-3.2.18/flexget/api/core/
H A Dauthentication.py25 auth_value = request.headers.get('Authorization')
27 if not auth_value:
31 if auth_value.startswith('Token'):
33 token = auth_value.replace('Token ', '', 1)
37 if auth_value.startswith('Basic'):
39 credentials = base64.b64decode(auth_value.replace('Basic ', '', 1)).decode()
/dports/net/libzapojit/libzapojit-0.0.3/src/
H A Dzpj-goa-authorizer.c85 gchar *auth_value = NULL; in zpj_goa_authorizer_process_message() local
97 auth_value = g_strconcat ("access_token=", priv->access_token, NULL); in zpj_goa_authorizer_process_message()
98 soup_uri_set_query (uri, auth_value); in zpj_goa_authorizer_process_message()
102 auth_value = g_strconcat ("Bearer ", priv->access_token, NULL); in zpj_goa_authorizer_process_message()
103 soup_message_headers_append (message->request_headers, "Authorization", auth_value); in zpj_goa_authorizer_process_message()
109 g_free (auth_value); in zpj_goa_authorizer_process_message()
/dports/security/tpm2-tss/tpm2-tss-3.1.0/test/integration/
H A Dsys-session-util.c557 TPM2B_AUTH *auth_value) in gen_session_key() argument
567 CatSizedByteBuffer((TPM2B *)&sessionValue, (TPM2B *)auth_value); in gen_session_key()
599 TPM2B_AUTH *auth_value) in encrypt_param_cfb() argument
605 rval = gen_session_key(session, &encryptKey, &iv, auth_value); in encrypt_param_cfb()
617 TPM2B_AUTH *auth_value) in decrypt_param_cfb() argument
623 rval = gen_session_key(session, &encryptKey, &iv, auth_value); in decrypt_param_cfb()
635 TPM2B_AUTH *auth_value) in encrypt_decrypt_xor() argument
649 CatSizedByteBuffer((TPM2B *)&key, (TPM2B *)auth_value); in encrypt_decrypt_xor()
674 TPM2B_AUTH *auth_value) in encrypt_command_param() argument
677 encrypt_param_cfb(session, encrypted_data, clear_data, auth_value) : in encrypt_command_param()
[all …]
/dports/www/p5-Gungho/Gungho-0.09008/lib/Gungho/Component/Authentication/
H A DBasic.pm39 my $auth_value = "Basic " . MIME::Base64::encode("$user:$pass", "");
45 if ($auth && $auth eq $auth_value) {
55 $referral->header($auth_header => $auth_value);
/dports/www/py-seafdav/seafdav-8.0.7-server/wsgidav/
H A Dhttp_authenticator.py294 auth_value = ""
296 auth_value = auth_header[len("Basic ") :].strip()
298 auth_value = ""
300 auth_value = compat.base64_decodebytes(compat.to_bytes(auth_value))
301 auth_value = compat.to_native(auth_value)
302 user_name, password = auth_value.split(":", 1)
/dports/www/py-wsgidav/WsgiDAV-3.1.0/wsgidav/
H A Dhttp_authenticator.py293 auth_value = ""
295 auth_value = auth_header[len("Basic ") :].strip()
297 auth_value = ""
299 auth_value = compat.base64_decodebytes(compat.to_bytes(auth_value))
300 auth_value = compat.to_native(auth_value)
301 user_name, password = auth_value.split(":", 1)
/dports/net/gfbgraph/gfbgraph-0.2.4/gfbgraph/
H A Dgfbgraph-simple-authorizer.c171 gchar *auth_value; in gfbgraph_simple_authorizer_process_message() local
180 auth_value = g_strconcat ("access_token=", priv->access_token, NULL); in gfbgraph_simple_authorizer_process_message()
181 soup_uri_set_query (uri, auth_value); in gfbgraph_simple_authorizer_process_message()
183 g_free (auth_value); in gfbgraph_simple_authorizer_process_message()
H A Dgfbgraph-goa-authorizer.c174 gchar *auth_value; in gfbgraph_goa_authorizer_process_message() local
183 auth_value = g_strconcat ("access_token=", priv->access_token, NULL); in gfbgraph_goa_authorizer_process_message()
184 soup_uri_set_query (uri, auth_value); in gfbgraph_goa_authorizer_process_message()
186 g_free (auth_value); in gfbgraph_goa_authorizer_process_message()
/dports/devel/py-oci/oci-2.53.1/src/oci/_vendor/httpsig_cffi/
H A Dutils.py75 auth_value = auth[1]
76 if auth_value and len(auth_value):
78 fields = parse_http_list(auth_value)
/dports/textproc/py-elasticsearch/elasticsearch-7.15.2/elasticsearch/client/
H A Dutils.py323 def _base64_auth_header(auth_value): argument
328 if isinstance(auth_value, (list, tuple)):
329 auth_value = base64.b64encode(to_bytes(":".join(auth_value)))
330 return to_str(auth_value)
/dports/security/tpm2-tss/tpm2-tss-3.1.0/src/tss2-esys/
H A Desys_iutil.c1002 const TPM2B_AUTH * auth_value) in iesys_compute_session_value() argument
1021 if (name == NULL || auth_value == NULL) in iesys_compute_session_value()
1027 &auth_value->buffer[0], auth_value->size); in iesys_compute_session_value()
1028 session->rsrc.misc.rsrc_session.sizeSessionValue += auth_value->size; in iesys_compute_session_value()
1033 if (iesys_is_object_bound(name, auth_value, session)) in iesys_compute_session_value()
1041 session->rsrc.misc.rsrc_session.sizeHmacValue += auth_value->size; in iesys_compute_session_value()
1582 TPM2B_AUTH *auth_value, in iesys_hash_long_auth_values() argument
1593 if (auth_value && auth_value->size > hash_size) { in iesys_hash_long_auth_values()
1599 auth_value->size); in iesys_hash_long_auth_values()
1606 memcpy(&auth_value->buffer[0], &hash2b.buffer[0], hash_size); in iesys_hash_long_auth_values()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/testing/selftests/tpm2/
H A Dtpm2.py539 def create_root_key(self, auth_value = bytes()): argument
549 sensitive = SensitiveCreate(user_auth=auth_value)
584 def seal(self, parent_key, data, auth_value, policy_dig, argument
595 sensitive = SensitiveCreate(user_auth=auth_value, data=data)
624 def unseal(self, parent_key, blob, auth_value, policy_handle): argument
646 auth_cmd = AuthCommand(session_handle=policy_handle, hmac=auth_value)
648 auth_cmd = AuthCommand(hmac=auth_value)
/dports/multimedia/libv4l/linux-5.13-rc2/tools/testing/selftests/tpm2/
H A Dtpm2.py539 def create_root_key(self, auth_value = bytes()): argument
549 sensitive = SensitiveCreate(user_auth=auth_value)
584 def seal(self, parent_key, data, auth_value, policy_dig, argument
595 sensitive = SensitiveCreate(user_auth=auth_value, data=data)
624 def unseal(self, parent_key, blob, auth_value, policy_handle): argument
646 auth_cmd = AuthCommand(session_handle=policy_handle, hmac=auth_value)
648 auth_cmd = AuthCommand(hmac=auth_value)
/dports/multimedia/v4l-utils/linux-5.13-rc2/tools/testing/selftests/tpm2/
H A Dtpm2.py539 def create_root_key(self, auth_value = bytes()): argument
549 sensitive = SensitiveCreate(user_auth=auth_value)
584 def seal(self, parent_key, data, auth_value, policy_dig, argument
595 sensitive = SensitiveCreate(user_auth=auth_value, data=data)
624 def unseal(self, parent_key, blob, auth_value, policy_handle): argument
646 auth_cmd = AuthCommand(session_handle=policy_handle, hmac=auth_value)
648 auth_cmd = AuthCommand(hmac=auth_value)
/dports/sysutils/munin-contrib/contrib-c31cb28/plugins/monit/
H A Dmonit_parser76 auth_value = "Basic %s" % auth_base64_str
77 req.add_header("Authorization", auth_value)

123