Home
last modified time | relevance | path

Searched refs:hash (Results 51 – 75 of 470) sorted by path

12345678910>>...19

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php73 ->withHash($this->hash->getHash())
89 … if (self::$engines['OpenSSL'] && in_array($this->hash->getHash(), openssl_get_md_methods())) {
91 … $result = openssl_sign($message, $signature, $this->toString('PKCS8'), $this->hash->getHash());
104 $h = $this->hash->hash($message);
H A DPublicKey.php50 … if (self::$engines['OpenSSL'] && in_array($this->hash->getHash(), openssl_get_md_methods())) {
53 … $result = openssl_verify($message, $sig, $this->toString('PKCS8'), $this->hash->getHash());
66 $h = $this->hash->hash($message);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php334 … return self::$engines['OpenSSL'] && in_array($this->hash->getHash(), openssl_get_md_methods()) ?
371 ->withHash($this->hash->getHash())
450 * @param string $hash
452 public function withHash($hash) argument
457 if ($this->curve instanceof Ed25519 && $hash != 'sha512') {
460 if ($this->curve instanceof Ed448 && $hash != 'shake256-912') {
464 return parent::withHash($hash);
H A DHash.php213 * @param string $hash
303 * @param string $hash
307 $this->hashParam = $hash = strtolower($hash);
308 switch ($hash) {
326 $hash = substr($hash, 0, -3);
369 switch ($hash) {
425 if ($hash == 'sha512/224' || $hash == 'sha512/256') {
1326 * @param array $hash
1460 $hash = [
1474 … $temp = $hash[0]->toBytes() . $hash[1]->toBytes() . $hash[2]->toBytes() . $hash[3]->toBytes() .
[all …]
H A DRSA.php574 $h = $this->hash->hash($m);
577 switch ($this->hash->getHash()) {
637 $h = $this->hash->hash($m);
640 switch ($this->hash->getHash()) {
724 * @param string $hash
726 public function withHash($hash) argument
731 switch (strtolower($hash)) {
741 $new->hash = new Hash($hash);
760 * @param string $hash
762 public function withMGFHash($hash) argument
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd25519.php171 $hash = new Hash('sha512');
172 $h = $hash->hash($str);
H A DEd448.php112 $hash = new Hash('shake256-912');
113 $h = $hash->hash($str);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPrivateKey.php118 $hash = new Hash($curve::HASH);
120 $secret = substr($hash->hash($this->dA->secret), $curve::SIZE);
130 $r = $hash->hash($dom . $secret . $message);
136 $k = $hash->hash($dom . $R . $A . $message);
146 … if (self::$engines['OpenSSL'] && in_array($this->hash->getHash(), openssl_get_md_methods())) {
153 …n($message, $signature, $this->toString('PKCS8', ['namedCurve' => false]), $this->hash->getHash());
166 $e = $this->hash->hash($message);
169 $Ln = $this->hash->getLength() - $order->getLength();
250 ->withHash($this->hash->getHash())
H A DPublicKey.php103 $hash = new Hash($curve::HASH);
104 $k = $hash->hash($dom2 . substr($signature, 0, $curve::SIZE) . $A . $message);
125 … if (self::$engines['OpenSSL'] && in_array($this->hash->getHash(), openssl_get_md_methods())) {
128 …_verify($message, $sig, $this->toString('PKCS8', ['namedCurve' => false]), $this->hash->getHash());
140 $e = $this->hash->hash($message);
143 $Ln = $this->hash->getLength() - $order->getLength();
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php221 $mHash = $this->hash->hash($m);
228 $h = $this->hash->hash($m2);
396 $lHash = $this->hash->hash($this->label);
484 ->withHash($this->hash->getHash())
509 'hash' => $this->hash->getHash(),
H A DPublicKey.php211 $hash = $decoded['digestAlgorithm']['algorithm'];
212 $hash = substr($hash, 0, 3) == 'id-' ?
213 substr($hash, 3) :
214 $hash;
215 $hash = new Hash($hash);
216 $em = $hash->hash($m);
241 $mHash = $this->hash->hash($m);
265 $h2 = $this->hash->hash($m2);
393 $lHash = $this->hash->hash($this->label);
496 'hash' => $this->hash->getHash(),
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1895 $hash = new Hash('sha1');
1896 $hash = $hash->hash($dn);
1897 extract(unpack('Vhash', $hash));
1898 return strtolower(Hex::encode(pack('N', $hash)));
3756 $hash = new Hash('sha1');
3757 $hash = $hash->hash($key);
3760 $hash = substr($hash, -8);
3761 $hash[0] = chr((ord($hash[0]) & 0x0F) | 0x40);
3764 return $hash;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2671 $hash = 'sha512';
2675 $hash = 'sha256';
2680 $hash = 'sha1';
2688 $hash = 'sha512';
2692 $hash = 'sha256';
2696 $hash = 'sha384';
2700 $hash = 'sha512';
2711 $hash = 'sha1';
5062 $hash = 'sha512';
5065 $hash = 'sha256';
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php166 * @param string $hash
169 public function withHash($hash) argument
173 $hash = strtolower($hash);
177 switch ($hash) {
203 if ($hash != $expectedHash) {
208 if ($hash != 'sha1') {
/plugin/authgooglesheets/vendor/symfony/polyfill-php72/
H A DPhp72.php94 if (null === $hash = spl_object_hash($object)) {
99 …return self::$hashMask ^ hexdec(substr($hash, 16 - (\PHP_INT_SIZE * 2 - 1), (\PHP_INT_SIZE * 2 - 1…
/plugin/authloginapi/
H A Daction.php76 $signature = hash('sha256', $encoded.$this->token);
H A Dauth.php77 $signatureExpected = hash('sha256', $signatureInput);
/plugin/authradius/
H A Dmschap.php39 return pack('H*', hash('md4', str2unicode($plain)));
80 function NtPasswordHashHash($hash) argument
82 return pack('H*', hash('md4', $hash));
87 return substr(pack('H*', hash('sha1', $peerChallenge . $challenge . $username)), 0, 8);
/plugin/authwordpress/
H A Dclass-phpass.php22 # change the hash type identifier (the "$P$") to something different.
149 $hash = md5($salt . $password, TRUE);
151 $hash = md5($hash . $password, TRUE);
154 $hash = pack('H*', md5($salt . $password));
156 $hash = pack('H*', md5($hash . $password));
161 $output .= $this->encode64($hash, 16);
235 $hash =
237 if (strlen($hash)
[all...]
/plugin/autotweet2/
H A Daction.php135 $hash = hash_hmac( 'sha1' , $signature_data , $signature_key , TRUE ) ;
138 $signature = base64_encode( $hash ) ;
/plugin/avatar/
H A Dmonsterid.php14 // create 16 byte hash from seed
15 $hash = md5($seed);
19 'legs' => _get_monster_part(substr($hash, 0, 2), 1, 5),
20 'hair' => _get_monster_part(substr($hash, 2, 2), 1, 5),
21 'arms' => _get_monster_part(substr($hash, 4, 2), 1, 5),
22 'body' => _get_monster_part(substr($hash, 6, 2), 1, 15),
23 'eyes' => _get_monster_part(substr($hash, 8, 2), 1, 15),
24 'mouth'=> _get_monster_part(substr($hash, 10, 2), 1, 10),
45 $r = _get_monster_part(substr($hash, 0, 4), 20, 235);
46 $g = _get_monster_part(substr($hash,
[all...]
/plugin/barcodes/
H A Dcomposer.lock7 "content-hash": "4c5ab20fc90c3793f2575730e2e5174f",
/plugin/bez/scripts/
H A Dthread.js45 if (active.hash === '#comment') {
48 } else if (active.hash === '#cause') {
/plugin/bootswrapper/
H A Dscript.js114 jQuery('.bs-wrap-nav .nav a[href="' + location.hash + '"]').tab('show');
/plugin/botbouncer/lib/
H A Dmollom.php352 $hash = base64_encode(
361 $parameters['hash'] = $hash;

12345678910>>...19