Home
last modified time | relevance | path

Searched refs:newtag (Results 1 – 5 of 5) sorted by relevance

/plugin/definitionlist/
H A Dsyntax.php93 $newtag = (substr(rtrim($match), -1) == DL_DT) ? 'dt' : 'dd';
94 array_push($this->stack, $newtag);
97 … $this->_writeCall($newtag,DOKU_LEXER_ENTER,$pos,$match,$handler); // ...and open the new dl item
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DSalsa20.php254 $this->newtag = $this->poly1305($ciphertext);
276 $newtag = $this->poly1305($ciphertext);
277 if ($this->oldtag != substr($newtag, 0, strlen($this->oldtag))) {
H A DRijndael.php995 …$this->newtag = sodium_crypto_aead_aes256gcm_encrypt($plaintext, $this->aad, $this->nonce, $this->…
996 return Strings::shift($this->newtag, strlen($plaintext));
1004 $this->newtag,
H A DChaCha20.php138 $this->newtag = $this->usingGeneratedPoly1305Key && strlen($this->nonce) == 12 ?
168 $newtag = $this->poly1305($ciphertext);
169 if ($this->oldtag != substr($newtag, 0, strlen($this->oldtag))) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php563 protected $newtag = false; variable in phpseclib3\\Crypt\\Common\\SymmetricKey
1167 $this->newtag = $cipher->encrypt($s);
1176 $this->newtag = $this->poly1305($ciphertext);
1538 $newtag = $this->poly1305($ciphertext);
1554 $newtag = $cipher->encrypt($s);
1556 if ($this->oldtag != substr($newtag, 0, strlen($newtag))) {
1901 if ($this->newtag === false) {
1915 $this->newtag :
1916 substr($this->newtag, 0, $length);