Home
last modified time | relevance | path

Searched refs:hash (Results 126 – 150 of 470) sorted by last modified time

12345678910>>...19

/plugin/sectiontoggle/
H A Dscript.js48 var hash = jQuery(elem).html().replace(/\s/g, "_");
49 regex = RegExp('\\b' + escapeRegExp(hash.toLowerCase()) + '\\b');
51 if(hash.toLowerCase() == SectionToggle.hash || regex.test(JSINFO['h_ini_open'])) {
54 else if(SectionToggle.hash){
55 regex = RegExp('^' +SectionToggle.hash,'i'); //bootstrap3
56 if(regex.test(hash)) {
126 /*normalize url hash */
127 if (window.location.hash) {
128 SectionToggle.hash
227 hash: "", global() property in SectionToggle
[all...]
/plugin/bootswrapper/
H A Dscript.js114 jQuery('.bs-wrap-nav .nav a[href="' + location.hash + '"]').tab('show');
/plugin/discussion/
H A Daction.php240 $hash = $data['subscribers'][$mail];
241 $data['subscribers'][$mail]['hash'] = $hash;
567 $hash = $data['subscribers'][$mail];
568 $data['subscribers'][$mail]['hash'] = $hash;
/plugin/stlviewer/stlviewer/
H A Dthree.min.js2hash:{directionalLength:-1,pointLength:-1,spotLength:-1,rectAreaLength:-1,hemiLength:-1,numDirecti…
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js1663 … var hash = $._data(this, 'events'); // http://blog.jquery.com/2012/08/09/jquery-1-8-released/
1664 return hash && hash[type] && hash[type].length > 0;
/plugin/davcal/vendor/sabre/dav/lib/DAV/Auth/Backend/
H A DAbstractDigest.php111 $hash = $this->getDigestHash($this->realm, $username);
113 if ($hash === false || is_null($hash)) {
116 if (!is_string($hash)) {
121 if (!$digest->validateA1($hash)) {
/plugin/text/
H A Drenderer.php431 function locallink($hash, $name = NULL, $returnonly=false){ argument
432 $name = $this->_getLinkTitle($name, $hash, $isImage);
/plugin/actionrenderer/
H A Drenderer.php381 public function locallink($hash, $name = null, $returnonly = false) argument
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php63 protected $hash; variable in phpseclib3\\Crypt\\Common\\AsymmetricKey
138 $this->hash = new Hash('sha256');
503 * @param string $hash
505 public function withHash($hash) argument
509 $new->hash = new Hash($hash);
510 $new->hmac = new Hash($hash);
522 return clone $this->hash;
545 $v = $this->hmac->hash($v);
548 $v = $this->hmac->hash($v);
555 $v = $this->hmac->hash($v);
[all …]
H A DSymmetricKey.php949 $hash = isset($func_args[0]) ? strtolower($func_args[0]) : 'sha1';
951 $hashObj->setHash($hash);
1033 $t = $hashObj->hash($t);
1043 case !in_array($hash, hash_algos()):
1047 $f = $u = $hashObj->hash($salt . pack('N', $i++));
1049 $u = $hashObj->hash($u);
1057 $key = hash_pbkdf2($hash, $password, $salt, $count, $dkLen, true);
1099 $ai = $hashObj->hash($ai);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS8.php360 $hash = self::getPBES1Hash($algorithm);
368 $cipher->setPassword($password, $kdf, $hash, $salt, $iterationCount);
420 $hash = str_replace('-', '/', substr($prf['algorithm'], 11));
424 $hash,
550 $hash = str_replace('-', '/', substr($prf, 11));
587 $hash = self::getPBES1Hash($encryptionAlgorithm);
596 $crypto->setPassword($password, $kdf, $hash, $salt, $iterationCount);
/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())
/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 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 …]
H A DDH.php369 * @param string $hash
371 public function withHash($hash) argument
H A DDSA.php222 ->withHash($params->hash->getHash())
298 … return self::$engines['OpenSSL'] && in_array($this->hash->getHash(), openssl_get_md_methods()) ?
318 ->withHash($this->hash->getHash())
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
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/google/apiclient-services/src/Safebrowsing/
H A DGoogleSecuritySafebrowsingV4ThreatEntry.php29 public $hash; variable in Google\\Service\\Safebrowsing\\GoogleSecuritySafebrowsingV4ThreatEntry
52 public function setHash($hash) argument
54 $this->hash = $hash;
61 return $this->hash;
/plugin/authgooglesheets/vendor/google/auth/src/
H A DCacheTrait.php105 $key = substr(hash('sha256', $key), 0, $this->maxKeyLength);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md896 …ponsible for handling the aggregation of multi-valued query string variables into a flattened hash.
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWT.php324 $hash = \hash_hmac($algorithm, $msg, $keyMaterial, true);
325 return self::constantTimeEquals($hash, $signature);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/
H A DFingerprint.php53 $hash = new Hash('sha256');
54 $base = base64_encode($hash->hash($key));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DItemContent.php31 public $hash; variable in Google\\Service\\CloudSearch\\ItemContent
68 public function setHash($hash) argument
70 $this->hash = $hash;
77 return $this->hash;
H A DItemMetadata.php40 public $hash; variable in Google\\Service\\CloudSearch\\ItemMetadata
129 public function setHash($hash) argument
131 $this->hash = $hash;
138 return $this->hash;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
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);

12345678910>>...19