Home
last modified time | relevance | path

Searched refs:setKey (Results 1 – 10 of 10) sorted by last modified time

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php23 * $des->setKey('abcdefgh');
128 * @see self::setKey()
618 * @see \phpseclib3\Crypt\Common\SymmetricKey::setKey()
621 public function setKey($key)
628 parent::setKey($key);
624 function setKey($key) global() function in phpseclib\\Crypt\\DES
H A DRSA.php
H A DRandom.php166 $crypto->setKey(substr($key, 0, $crypto->getKeyLength() >> 3));
H A DAES.php15 * {@link self::setKey() setKey()}. ie. if the key is 128-bits, the key length will be 128-bits. If it's 136-bits
16 * it'll be null-padded to 192-bits and 192 bits will be the key length until {@link self::setKey() setKey()}
30 * $aes->setKey('abcdefghijklmnop');
98 * @see \phpseclib3\Crypt\Rijndael:setKey()
103 public function setKey($key)
114 parent::setKey($key);
107 function setKey($key) global() function in phpseclib\\Crypt\\AES
H A DBase.php
H A DHash.php8 * If {@link self::setKey() setKey()} is called, {@link self::hash() hash()} will
18 * $hash->setKey('abcdefg');
100 * @see self::setKey()
214 public function setKey($key = false)
490 $c->setKey($kp);
824 $this->c->setKey($this->key);
184 function setKey($key = false) global() function in phpseclib\\Crypt\\Hash
H A DRC2.php21 * $rc2->setKey('abcdefgh');
57 * @see self::setKey()
66 * @see self::setKey()
105 * @see self::setKey()
116 * @see self::setKey()
133 * @see self::setKey()
206 * @see self::setKey()
293 * \phpseclib3\Crypt\RC2::setKey() call.
326 * @see \phpseclib3\Crypt\Common\SymmetricKey::setKey()
331 public function setKey(
343 function setKey($key, $t1 = 0) global() function in phpseclib\\Crypt\\RC2
[all...]
H A DTripleDES.php17 * $des->setKey('abcdefghijklmnopqrstuvwx');
86 * @see self::setKey()
87 * @see \phpseclib3\Crypt\DES::setKey()
236 * @see \phpseclib3\Crypt\DES::setKey()
237 * @see \phpseclib3\Crypt\Common\SymmetricKey::setKey()
241 public function setKey($key)
257 // copied from self::setKey()
264 $this->des[0]->setKey(substr($key, 0, 8));
265 $this->des[1]->setKey(substr($key, 8, 8));
266 $this->des[2]->setKey(subst
263 function setKey($key) global() function in phpseclib\\Crypt\\TripleDES
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php1948 $this->lengthEncrypt->setKey(substr($key, 32, 32));
1950 $this->encrypt->setKey(substr($key, 0, $encryptKeyLength));
1994 $this->lengthDecrypt->setKey(substr($key, 32, 32));
1996 $this->decrypt->setKey(substr($key, 0, $decryptKeyLength));
2028 $this->hmac_create->setKey(substr($key, 0, $createKeyLength));
2049 $this->hmac_check->setKey(substr($key, 0, $checkKeyLength));