Home
last modified time | relevance | path

Searched refs:username (Results 76 – 100 of 248) sorted by last modified time

12345678910

/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudOSLogin/
H A DPosixAccount.php65 public $username; variable in Google\\Service\\CloudOSLogin\\PosixAccount
210 public function setUsername($username) argument
212 $this->username = $username;
219 return $this->username;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DBasicAuthentication.php29 public $username; variable in Google\\Service\\Monitoring\\BasicAuthentication
48 public function setUsername($username) argument
50 $this->username = $username;
57 return $this->username;
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md247 'auth' => ['username', 'pass'], // auth option handled by your application
/plugin/authgooglesheets/vendor/google/auth/src/
H A DOAuth2.php115 private $username; variable in Google\\Auth\\OAuth2
867 if (!is_null($this->username) && !is_null($this->password)) {
949 return $this->username;
955 * @param string $username
958 public function setUsername($username) argument
960 $this->username = $username;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Connectors/
H A DUserPassword.php27 public $username; variable in Google\\Service\\Connectors\\UserPassword
46 public function setUsername($username) argument
48 $this->username = $username;
55 return $this->username;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/
H A DBitbucketServerConfig.php54 public $username; variable in Google\\Service\\CloudBuild\\BitbucketServerConfig
175 public function setUsername($username) argument
177 $this->username = $username;
184 return $this->username;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSecurityToken/
H A DGoogleIdentityStsV1IntrospectTokenResponse.php56 public $username; variable in Google\\Service\\CloudSecurityToken\\GoogleIdentityStsV1IntrospectTokenResponse
159 public function setUsername($username) argument
161 $this->username = $username;
168 return $this->username;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DatabaseMigrationService/
H A DMySqlConnectionProfile.php47 public $username; variable in Google\\Service\\DatabaseMigrationService\\MySqlConnectionProfile
136 public function setUsername($username) argument
138 $this->username = $username;
145 return $this->username;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3WebhookGenericWebService.php42 public $username; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3WebhookGenericWebService
103 public function setUsername($username) argument
105 $this->username = $username;
112 return $this->username;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2236 * @param string $username
2262 * @param string $username
2359 * @param string $username
2420 $username,
2446 $username,
2460 $username,
2507 * @param string $username
2517 $username,
2628 * @param string $username
2652 * @param string $username
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/
H A DMySqlReplicaConfiguration.php61 public $username; variable in Google\\Service\\SQLAdmin\\MySqlReplicaConfiguration
196 public function setUsername($username) argument
198 $this->username = $username;
205 return $this->username;
H A DOnPremisesConfiguration.php55 public $username; variable in Google\\Service\\SQLAdmin\\OnPremisesConfiguration
172 public function setUsername($username) argument
174 $this->username = $username;
181 return $this->username;
/plugin/xcom/lang/en/
H A Dfunctions.txt120 ^Parameters |(String) scope, (String) username, (int) permission|
126 ^Parameters |(String) scope, (String) username|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DBindRequest.php43 protected $username;
65 * @param string $username
68 public function setUsername(string $username)
70 $this->username = $username;
80 return $this->username;
92 Asn1::octetString($this->username),
42 protected $username; global() variable in FreeDSx\\Ldap\\Operation\\Request\\BindRequest
67 setUsername(string $username) global() argument
H A DSaslBindRequest.php52 $this->username = '';
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DOperations.php69 * A simple bind request with a username and password.
71 * @param string $username
75 public static function bind(string $username, string $password)
77 return new SimpleBindRequest($username, $password);
96 * @param string $username
99 public static function bindAnonymously(string $username = '')
101 return new AnonBindRequest($username);
163 public static function passwordModify(string $username, string $oldPassword, string $newPassword): PasswordModifyRequest
165 return new PasswordModifyRequest($username, $oldPassword, $newPassword);
73 bind(string $username, string $password) global() argument
97 bindAnonymously(string $username = '') global() argument
159 passwordModify(string $username, string $oldPassword, string $newPassword) global() argument
H A DLdapClient.php85 * A Simple Bind to LDAP with a username and password.
87 * @param string $username
92 public function bind(string $username, string $password): LdapMessageResponse
94 return $this->sendAndReceive(Operations::bind($username, $password)->setVersion($this->options['version']));
100 * @param array $options The SASL options (ie. ['username' => '...', 'password' => '...'])
89 bind(string $username, string $password) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DGenericRequestHandler.php44 public function bind(string $username, string $password): bool
43 bind(string $username, string $password) global() argument
H A DProxyRequestHandler.php50 public function bind(string $username, string $password): bool
53 return (bool) $this->ldap()->bind($username, $password);
49 bind(string $username, string $password) global() argument
H A DRequestHandlerInterface.php82 * A simple username/password bind. It should simply return true or false for whether the username and password is
88 public function bind(string $username, string $password): bool;
87 bind(string $username, string $password) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/Token/
H A DAnonToken.php24 protected $username;
32 * @param null|string $username
35 public function __construct(?string $username = null, int $version = 3)
37 $this->username = $username;
46 return $this->username;
23 protected $username; global() variable in FreeDSx\\Ldap\\Server\\Token\\AnonToken
34 __construct(string $username = null, int $version = 3) global() argument
H A DBindToken.php15 * Represents a username/password token that is bound and authorized.
24 protected $username;
37 * @param string $username
41 public function __construct(string $username, string $password, int $version = 3)
43 $this->username = $username;
53 return $this->username;
23 protected $username; global() variable in FreeDSx\\Ldap\\Server\\Token\\BindToken
40 __construct(string $username, string $password, int $version = 3) global() argument
/plugin/pureldap/classes/
H A DADClient.php27 public function getUser($username, $fetchgroups = true)
29 $entry = $this->getUserEntry($username);
37 * @param string $username
40 protected function getUserEntry($username)
43 $samaccountname = $this->simpleUser($username);
44 $userprincipal = $this->qualifiedUser($username);
68 public function setPassword($username, $newpass, $oldpass = null)
72 $entry = $this->getUserEntry($username);
74 $this->error("User '$username' not found", __FILE__, __LINE__);
81 if ($this->isAuthenticated !== $this->prepareBindUser($username)) {
26 getUser($username, $fetchgroups = true) global() argument
[all...]
H A DClient.php28 /** @var bool|string is this client authenticated already? Contains username if yes */
190 * @param string $username
194 public function getCachedUser($username, $fetchgroups = true)
199 if (isset($this->userCache[$username])) {
200 if (!$fetchgroups || is_array($this->userCache[$username]['grps'])) {
201 return $this->userCache[$username];
207 $cachename = getCacheName($username, '.pureldap-user');
210 $this->userCache[$username] = json_decode(
216 if (!$fetchgroups || is_array($this->userCache[$username]['grps'])) {
217 return $this->userCache[$username];
186 getCachedUser($username, $fetchgroups = true) global() argument
228 getUser($username, $fetchgroups = true) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/
H A DCramMD5Challenge.php84 if (!(isset($options['username']) && isset($options['password']))) {
85 throw new SaslException('A username and password is required for a client response.');
88 'username' => $options['username'],
97 if (!$received->has('username')) {
98 throw new SaslException('The client response must have a username.');
106 $username = $received->get('username');
111 throw new SaslException('The password option must be callable. It will be passed the username and challenge');
113 $expectedDigest = $password($username,
[all...]

12345678910