Home
last modified time | relevance | path

Searched refs:challenge (Results 1 – 25 of 58) sorted by last modified time

123

/plugin/prosemirror/
H A DREADME.md62 - The main challenge is that Prosemirror operates on a flat array, whereas DokuWiki-Syntax is usually a tree
/plugin/captcha/
H A Dplugin.info.txt6 desc Use a CAPTCHA challenge to protect DokuWiki against automated spam
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/
H A DAbstractBasicTest.php64 $backend->challenge($request, $response);
H A DAbstractDigestTest.php119 $backend->challenge($request, $response);
H A DApacheTest.php65 $backend->challenge($request, $response);
H A DMock.php83 function challenge(RequestInterface $request, ResponseInterface $response) { function in Sabre\\DAV\\Auth\\Backend\\Mock
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/Backend/
H A DAbstractBasic.php133 function challenge(RequestInterface $request, ResponseInterface $response) { function in Sabre\\DAV\\Auth\\Backend\\AbstractBasic
H A DAbstractDigest.php150 function challenge(RequestInterface $request, ResponseInterface $response) { function in Sabre\\DAV\\Auth\\Backend\\AbstractDigest
H A DApache.php92 function challenge(RequestInterface $request, ResponseInterface $response) { function in Sabre\\DAV\\Auth\\Backend\\Apache
H A DBackendInterface.php68 function challenge(RequestInterface $request, ResponseInterface $response); function
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/
H A DPlugin.php186 $backend->challenge($request, $response);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firebaseappcheck/
H A DGoogleFirebaseAppcheckV1betaAppAttestChallengeResponse.php25 public $challenge; variable in Google\\Service\\Firebaseappcheck\\GoogleFirebaseAppcheckV1betaAppAttestChallengeResponse
34 public function setChallenge($challenge) argument
36 $this->challenge = $challenge;
43 return $this->challenge;
H A DGoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationRequest.php29 public $challenge; variable in Google\\Service\\Firebaseappcheck\\GoogleFirebaseAppcheckV1betaExchangeAppAttestAttestationRequest
52 public function setChallenge($challenge) argument
54 $this->challenge = $challenge;
61 return $this->challenge;
H A DGoogleFirebaseAppcheckV1betaGenerateAppAttestChallengeResponse.php25 public $challenge; variable in Google\\Service\\Firebaseappcheck\\GoogleFirebaseAppcheckV1betaGenerateAppAttestChallengeResponse
34 public function setChallenge($challenge) argument
36 $this->challenge = $challenge;
43 return $this->challenge;
H A DGoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest.php33 public $challenge; variable in Google\\Service\\Firebaseappcheck\\GoogleFirebaseAppcheckV1betaExchangeAppAttestAssertionRequest
66 public function setChallenge($challenge) argument
68 $this->challenge = $challenge;
75 return $this->challenge;
H A DGoogleFirebaseAppcheckV1betaGeneratePlayIntegrityChallengeResponse.php25 public $challenge; variable in Google\\Service\\Firebaseappcheck\\GoogleFirebaseAppcheckV1betaGeneratePlayIntegrityChallengeResponse
34 public function setChallenge($challenge) argument
36 $this->challenge = $challenge;
43 return $this->challenge;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Verifiedaccess/
H A DChallenge.php44 public function setChallenge(SignedData $challenge) argument
46 $this->challenge = $challenge;
53 return $this->challenge;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DRelyingparty.php45 public $challenge; variable in Google\\Service\\IdentityToolkit\\Relyingparty
156 public function setChallenge($challenge) argument
158 $this->challenge = $challenge;
165 return $this->challenge;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DVerifiedaccess.php42 public $challenge; variable in Google\\Service\\Verifiedaccess
63 'challenge',
67 'path' => 'v1/challenge',
71 'path' => 'v1/challenge:verify',
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php266 private $challenge; variable in phpseclib3\\File\\X509
2163 * @param string $challenge
2166 public function setChallenge($challenge) argument
2168 $this->challenge = $challenge;
2870 if (!empty($this->challenge)) {
2872 …t['publicKeyAndChallenge']['challenge'] = $this->challenge & str_repeat("\x7F", strlen($this->chal…
2884 'challenge' => !empty($this->challenge) ? $this->challenge : ''
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/
H A DAnonymousChallenge.php19 * The ANONYMOUS challenge / response class.
45 public function challenge(?string $received = null, array $options = []): SaslContext function in FreeDSx\\Sasl\\Challenge\\AnonymousChallenge
H A DChallengeInterface.php18 * The challenge / response interface.
25 * Generate the next response to send in the challenge. It takes two optional parameters:
30 * The SaslContext returned indicates various aspects of the state of the challenge, including the response.
34 public function challenge(?string $received = null, array $options = []): SaslContext; function
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Factory/
H A DDigestMD5MessageFactory.php80 $challenge = new Message();
81 $challenge->set('algorithm', 'md5-sess');
82 $challenge->set('nonce', $options['nonce'] ?? $this->generateNonce($options['nonce_size'] ?? self::NONCE_SIZE));
83 $challenge->set('qop', $this->generateAvailableQops($options));
84 $challenge->set('realm', $options['realm'] ?? $_SERVER['USERDOMAIN'] ?? gethostname());
85 $challenge->set('maxbuf', $options['maxbuf'] ?? '65536');
86 $challenge->set('charset', 'utf-8');
87 if (in_array('auth-conf', $challenge->get('qop'))) {
88 $challenge->set('cipher', $this->getAvailableCiphers($options));
91 return $challenge;
107 generateClientResponse(array $options, Message $challenge) global() argument
130 getDigestUri(array $options, Message $response, Message $challenge) global() argument
160 selectQopFromChallenge(Message $challenge, string $qop) global() argument
211 setCipherForChallenge(array $options, Message $response, Message $challenge) global() argument
251 getRealmFromChallenge(Message $challenge) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Mechanism/
H A DCramMD5Mechanism.php40 public function challenge(): ChallengeInterface function in FreeDSx\\Sasl\\Mechanism\\CramMD5Mechanism
H A DDigestMD5Mechanism.php46 public function challenge(): ChallengeInterface function in FreeDSx\\Sasl\\Mechanism\\DigestMD5Mechanism
48 $challenge = new DigestMD5Challenge();
50 return $challenge;
100 public static function computeResponse(string $password, Message $challenge, Message $response, bool $useServerMode = false): string argument
102 $a1 = self::computeA1($password, $challenge, $response);
120 $challenge->get('nonce'),
140 public static function computeA1(string $password, Message $challenge, Message $response): string argument
151 $challenge->get('nonce'),

123