Home
last modified time | relevance | path

Searched refs:auth (Results 76 – 100 of 299) sorted by last modified time

12345678910>>...12

/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DAWSTest.php23 private $auth; variable in Sabre\\HTTP\\Auth\\AWSTest
38 $result = $this->auth->init();
57 $this->auth->init();
58 $result = $this->auth->validate($secretKey);
80 $this->auth->init();
81 $result = $this->auth->validate($secretKey);
108 $this->auth->init();
136 $this->auth->init();
167 $this->auth->init();
201 $this->auth->init();
[all …]
H A DDigestTest.php25 private $auth; variable in Sabre\\HTTP\\Auth\\DigestTest
59 $this->auth->init();
61 $this->assertEquals($username, $this->auth->getUserName());
62 $this->assertEquals(self::REALM, $this->auth->getRealm());
89 $this->auth->init();
100 $this->auth->init();
108 $this->auth->setQOP(Digest::QOP_AUTHINT);
129 $this->auth->init();
158 $this->auth->init();
167 $this->auth->requireLogin();
[all …]
/plugin/davcal/
H A Dhelper.php583 global $auth;
588 $ud = $auth->getUserData($user);
H A DprincipalBackendDokuwiki.php12 global $auth;
13 $users = $auth->retrieveUsers();
28 global $auth;
30 $userData = $auth->getUserData($user);
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/Backend/
H A DAbstractBasic.php95 $auth = new HTTP\Auth\Basic(
101 $userpass = $auth->getCredentials($request);
135 $auth = new HTTP\Auth\Basic(
140 $auth->requireLogin();
H A DAbstractDigest.php152 $auth = new HTTP\Auth\Digest(
157 $auth->init();
158 $auth->requireLogin();
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DBasic.php30 $auth = $this->request->getHeader('Authorization');
32 if (!$auth) {
36 if (strtolower(substr($auth, 0, 6)) !== 'basic ') {
40 $credentials = explode(':', base64_decode(substr($auth, 6)), 2);
H A DBearer.php29 $auth = $this->request->getHeader('Authorization');
31 if (!$auth) {
35 if (strtolower(substr($auth, 0, 7)) !== 'bearer ') {
39 return substr($auth, 7);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DSimplePluginTest.php156 $auth = new DAV\Auth\Plugin(new DAV\Auth\Backend\Mock(),'SabreDAV');
157 $server->addPlugin($auth);
160 $auth->beforeMethod(new HTTP\Request(), new HTTP\Response());
183 $auth = new DAV\Auth\Plugin(new DAV\Auth\Backend\Mock(),'SabreDAV');
184 $server->addPlugin($auth);
187 $auth->beforeMethod(new HTTP\Request(), new HTTP\Response());
260 $auth = new DAV\Auth\Plugin(new DAV\Auth\Backend\Mock(),'SabreDAV');
261 $server->addPlugin($auth);
264 $auth->beforeMethod(new HTTP\Request(), new HTTP\Response());
314 $auth = new DAV\Auth\Plugin(new DAV\Auth\Backend\Mock(),'SabreDAV');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/
H A DRequest.php72 public function setAuth(Auth $auth) argument
74 $this->auth = $auth;
81 return $this->auth;
/plugin/authgooglesheets/vendor/google/auth/src/
H A DCredentialsLoader.php172 'auth' => 'google_auth',
H A DServiceAccountSignerTrait.php37 $privateKey = $this->auth->getSigningKey();
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md693 …`$client->getConfig()->setPath('request.options/auth', array('user', 'pass', 'Basic|Digest|NTLM|An…
694 `$client->setDefaultOption('auth', array('user', 'pass', 'Basic|Digest|NTLM|Any'));`
H A DCHANGELOG.md87 * Feature: Added NTLM auth [#1569](https://github.com/guzzle/guzzle/pull/1569)
790 …lugin` as deprecated. Use `$client->getConfig()->setPath('request.options/auth', array('user', 'pa…
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DClient.php62 private $auth; variable in Google\\Client
252 $auth = $this->getOAuth2Service();
253 $auth->setCode($code);
340 $auth = $this->getOAuth2Service();
341 $auth->setRefreshToken($refreshToken);
404 $auth = $this->getOAuth2Service();
594 public function setAuth($auth) argument
1056 if (!isset($this->auth)) {
1060 return $this->auth;
1068 $auth = new OAuth2(
[all …]
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
H A DServiceAccountJwtAccessCredentials.php48 protected $auth; variable in Google\\Auth\\Credentials\\ServiceAccountJwtAccessCredentials
94 $this->auth = new OAuth2([
120 $scope = $this->auth->getScope();
125 $this->auth->setAudience($authUri);
139 $audience = $this->auth->getAudience();
140 $scope = $this->auth->getScope();
151 $access_token = $this->auth->toJwt();
154 $this->auth->setAccessToken($access_token);
164 return $this->auth->getCacheKey();
172 return $this->auth->getLastReceivedToken();
[all …]
H A DUserRefreshCredentials.php42 protected $auth; variable in Google\\Auth\\Credentials\\UserRefreshCredentials
87 $this->auth = new OAuth2([
114 return $this->auth->fetchAuthToken($httpHandler);
122 return $this->auth->getClientId() . ':' . $this->auth->getCacheKey();
130 return $this->auth->getLastReceivedToken();
H A DServiceAccountCredentials.php73 protected $auth; variable in Google\\Auth\\Credentials\\ServiceAccountCredentials
150 $this->auth = new OAuth2([
213 $key = $this->auth->getIssuer() . ':' . $this->auth->getCacheKey();
214 if ($sub = $this->auth->getSub()) {
230 : $this->auth->getLastReceivedToken();
265 if ($this->auth->getScope()) {
293 $this->auth->getScope()
307 $this->auth->setSub($sub);
320 return $this->auth->getIssuer();
339 if ($this->auth->getAdditionalClaims()) {
[all …]
/plugin/authgooglesheets/
H A Dcomposer.lock83 "google/auth": "^1.10",
182 "name": "google/auth",
186 "url": "https://github.com/googleapis/google-auth-library-php.git",
191 …"url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/73392bad2eb6852eea…
226 "homepage": "http://github.com/google/google-auth-library-php",
233 "docs": "https://googleapis.github.io/google-auth-library-php/main/",
234 "issues": "https://github.com/googleapis/google-auth-library-php/issues",
235 "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.21.0"
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md324 …r own HTTP client requests, you should use [`google/auth`](https://github.com/googleapis/google-au…
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md4 …d><a href="http://www.github.com/google/google-auth-library-php">http://www.github.com/google/goog…
32 composer.phar require google/auth
100 'auth' => 'google_auth' // authorize all requests
119 'auth' => 'google_auth' // authorize all requests
155 'auth' => 'google_auth',
206 'auth' => 'google_auth' // authorize all requests
247 'auth' => ['username', 'pass'], // auth option handled by your application
268 $auth = new AccessToken();
269 $auth->verify($idToken);
280 $auth = new AccessToken();
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1123 protected $auth = []; variable in phpseclib3\\Net\\SSH2
2244 $this->auth[] = func_get_args();
3323 if (!empty($this->auth)) {
3364 foreach ($this->auth as $auth) {
3365 $result = $this->login(...$auth);
/plugin/translate/
H A Daction.php241 $auth = auth_quickaclcheck($id);
242 $auth_ok = ($auth >= AUTH_CREATE);
243 if (!$auth_ok && $auth >= AUTH_READ) {
353 $auth = auth_quickaclcheck($target_id);
354 $auth_ok = ($auth >= AUTH_CREATE);
355 if (!$auth_ok && $auth >= AUTH_READ) {
/plugin/authorstats/
H A Dsyntax.php246 global $auth;
247 $user = $auth->getUserData($name);
/plugin/structtemplate/_vagrant/
H A Dprovision_dokuwiki.sh150 config_file="${dw_path}/conf/acl.auth.php"

12345678910>>...12