Home
last modified time | relevance | path

Searched refs:nonce (Results 1 – 25 of 56) sorted by relevance

123

/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DDigestTest.php40 list($nonce, $opaque) = $this->getServerTokens();
49 $nonce . ':' .
57 …st username="' . $username . '", realm="' . self::REALM . '", nonce="' . $nonce . '", uri="/", res…
70 list($nonce, $opaque) = $this->getServerTokens();
79 $nonce . ':' .
87 …st username="' . $username . '", realm="' . self::REALM . '", nonce="' . $nonce . '", uri="/", res…
109 list($nonce, $opaque) = $this->getServerTokens(Digest::QOP_AUTHINT);
118 $nonce . ':' .
126 …st username="' . $username . '", realm="' . self::REALM . '", nonce="' . $nonce . '", uri="/", res…
138 list($nonce, $opaque) = $this->getServerTokens(Digest::QOP_AUTHINT | Digest::QOP_AUTH);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PlayIntegrity/
DRequestDetails.php25 public $nonce; variable in Google\\Service\\PlayIntegrity\\RequestDetails
38 public function setNonce($nonce) argument
40 $this->nonce = $nonce;
47 return $this->nonce;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/Resource/
DMyconfig.php75 * @param string $nonce The client nonce value.
87 public function requestAccess($cpksver, $nonce, $source, $volumeId, $optParams = []) argument
89 …$params = ['cpksver' => $cpksver, 'nonce' => $nonce, 'source' => $source, 'volumeId' => $volumeId];
99 * @param string $nonce The client nonce value.
115 public function syncVolumeLicenses($cpksver, $nonce, $source, $optParams = []) argument
117 $params = ['cpksver' => $cpksver, 'nonce' => $nonce, 'source' => $source];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
DConcurrentAccessRestriction.php41 public $nonce; variable in Google\\Service\\Books\\ConcurrentAccessRestriction
126 public function setNonce($nonce) argument
128 $this->nonce = $nonce;
135 return $this->nonce;
DDownloadAccessRestriction.php49 public $nonce; variable in Google\\Service\\Books\\DownloadAccessRestriction
158 public function setNonce($nonce) argument
160 $this->nonce = $nonce;
167 return $this->nonce;
/plugin/authdiscourse/
Dauth.php14 private $nonce, $prev_nonce;
39 $this->nonce = base64_encode(random_bytes(18));
40 …setcookie('authdiscourse_nonce', $this->nonce.';'.hash_hmac('sha256', $this->nonce, $this->sso_sec…
119 'nonce' => $this->nonce,
/plugin/cspheader/
Daction.php93 $nonce = bin2hex(random_bytes(16));
94 putenv("NONCE=$nonce");
95 $cspheader = str_replace('NONCE', $nonce, $cspheader);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DSalsa20.php125 * @param string $nonce
127 public function setNonce($nonce) argument
129 if (strlen($nonce) != 8) {
133 $this->nonce = $nonce;
156 if ($this->nonce === false) {
203 if ($this->nonce === false) {
227 $this->nonce .
DHash.php124 private $nonce = false; variable in phpseclib3\\Crypt\\Hash
242 * @param string $nonce
244 public function setNonce($nonce = false) argument
247 case !is_string($nonce):
248 case strlen($nonce) > 0 && strlen($nonce) <= 16:
250 $this->nonce = $nonce;
485 $nonce = $this->nonce;
492 $last = strlen($nonce) - 1;
494 $index = $nonce[$last] & $mask;
495 $nonce[$last] = $nonce[$last] ^ $index;
[all …]
DChaCha20.php128 $params = [$plaintext, $this->aad, $this->nonce, $this->key];
129 $ciphertext = strlen($this->nonce) == 8 ?
138 $this->newtag = $this->usingGeneratedPoly1305Key && strlen($this->nonce) == 12 ?
154 $params = [$ciphertext, $this->aad, $this->nonce, $this->key];
160 if ($this->usingGeneratedPoly1305Key && strlen($this->nonce) == 12) {
176 $plaintext = strlen($this->nonce) == 8 ?
186 * @param string $nonce
188 public function setNonce($nonce) argument
190 if (!is_string($nonce)) {
201 switch (strlen($nonce)) {
[all …]
DRijndael.php295 $this->nonce && strlen($this->nonce) == 12 &&
995 …s->newtag = sodium_crypto_aead_aes256gcm_encrypt($plaintext, $this->aad, $this->nonce, $this->key);
1003 $this->nonce,
1033 …m_crypto_aead_aes256gcm_decrypt($ciphertext . $this->oldtag, $this->aad, $this->nonce, $this->key);
1048 $this->nonce,
/plugin/gtime/gtlib/asn1/tsp/
DTSPTSTInfo.php62 private $nonce; variable in TSPTSTInfo
155 $this->nonce = $item->getValue();
231 if ($this->nonce != null) {
232 $sequence->add(new ASN1Integer($this->nonce));
/plugin/webdav/vendor/sabre/http/lib/Auth/
DDigest.php38 protected $nonce; variable in Sabre\\HTTP\\Auth\\Digest
49 $this->nonce = uniqid();
184 …'Digest realm="' . $this->realm . '",qop="' . $qop . '",nonce="' . $this->nonce . '",opaque="' . $…
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DDigest.php38 protected $nonce; variable in Sabre\\HTTP\\Auth\\Digest
49 $this->nonce = uniqid();
184 …'Digest realm="' . $this->realm . '",qop="' . $qop . '",nonce="' . $this->nonce . '",opaque="' . $…
/plugin/twofactoryubiauth/
Dhelper.php157 $nonce = "";
162 $nonce .= $chars[$rand];
164 return $nonce;
/plugin/autotweet/
DOAuth.php631 $nonce = @$request->get_parameter('oauth_nonce');
634 $this->check_nonce($consumer, $token, $nonce, $timestamp);
672 private function check_nonce($consumer, $token, $nonce, $timestamp) { argument
673 if( ! $nonce )
682 $nonce,
686 throw new OAuthException("Nonce already used: $nonce");
701 function lookup_nonce($consumer, $token, $nonce, $timestamp) { argument
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php266 $nonce = '';
269 $nonce.= $characters[rand(0, $maxRand)];
272 return $nonce;
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/
H A DCramMD5Challenge.php71 $nonce = $options['challenge'] ?? $this->generateNonce(32);
72 $challenge = new Message(['challenge' => $nonce]);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Cache/
DFilesystemTest.php24 $nonce = hash('sha256', uniqid(mt_rand(), true));
25 $this->classname = '__Twig_Tests_Cache_FilesystemTest_Template_'.$nonce;
/plugin/fedauth/Auth/OpenID/
DInterface.php179 * @param string $nonce The nonce to use.
DFileStore.php451 foreach ($nonces as $nonce) {
452 if (!Auth_OpenID_checkTimestamp($nonce, $now)) {
453 $filename = $this->nonce_dir . DIRECTORY_SEPARATOR . $nonce;
/plugin/authgoogle/google/contrib/
DGoogle_BooksService.php389 * @param string $nonce The client nonce value.
396 public function requestAccess($source, $volumeId, $nonce, $cpksver, $optParams = array()) { argument
397 …$params = array('source' => $source, 'volumeId' => $volumeId, 'nonce' => $nonce, 'cpksver' => $cpk…
411 * @param string $nonce The client nonce value.
420 public function syncVolumeLicenses($source, $nonce, $cpksver, $optParams = array()) { argument
421 $params = array('source' => $source, 'nonce' => $nonce, 'cpksver' => $cpksver);
2108 public $nonce; variable in Google_ConcurrentAccessRestriction
2139 public function setNonce( $nonce) { argument
2140 $this->nonce = $nonce;
2143 return $this->nonce;
[all …]
/plugin/icalevents/
Dsyntax-impl.php47 $this->nonce = mt_rand();
261 $summaryLinkToken= '{summary_link:' . $this->nonce . '}';
507 return '{' . $this->nonce .' magiccc}';
/plugin/openid/Auth/OpenID/
DFileStore.php487 foreach ($nonces as $nonce) {
488 if (!Auth_OpenID_checkTimestamp($nonce, $now)) {
489 $filename = $this->nonce_dir . DIRECTORY_SEPARATOR . $nonce;
/plugin/botbouncer/lib/
Dmollom.php349 $nonce = md5(time());
355 $time . ':'. $nonce .':'. self::$privateKey))))
362 $parameters['nonce'] = $nonce;

123