Home
last modified time | relevance | path

Searched refs:hash (Results 26 – 50 of 470) sorted by path

12345678910>>...19

/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;
H A DItemStructuredData.php25 public $hash; variable in Google\\Service\\CloudSearch\\ItemStructuredData
32 public function setHash($hash) argument
34 $this->hash = $hash;
41 return $this->hash;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSupport/
H A DMedia.php72 public $hash; variable in Google\\Service\\CloudSupport\\Media
351 public function setHash($hash) argument
353 $this->hash = $hash;
360 return $this->hash;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DRemoteBuildExecution.php70 'path' => 'v2/{+instanceName}/actionResults/{hash}/{sizeBytes}',
78 'hash' => [
103 'path' => 'v2/{+instanceName}/actionResults/{hash}/{sizeBytes}',
111 'hash' => [
187 'path' => 'v2/{+instanceName}/blobs/{hash}/{sizeBytes}:getTree',
195 'hash' => [
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/
H A DBuildBazelRemoteExecutionV2Digest.php22 public $hash; variable in Google\\Service\\RemoteBuildExecution\\BuildBazelRemoteExecutionV2Digest
25 public function setHash($hash) argument
27 $this->hash = $hash;
31 return $this->hash;
H A DGoogleDevtoolsRemoteworkersV1test2Digest.php22 public $hash; variable in Google\\Service\\RemoteBuildExecution\\GoogleDevtoolsRemoteworkersV1test2Digest
25 public function setHash($hash) argument
27 $this->hash = $hash;
31 return $this->hash;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/Resource/
H A DActionResults.php45 * @param string $hash The hash. In the case of SHA-256, it will always be a
60 public function get($instanceName, $hash, $sizeBytes, $optParams = []) argument
62 $params = ['instanceName' => $instanceName, 'hash' => $hash, 'sizeBytes' => $sizeBytes];
83 * @param string $hash The hash. In the case of SHA-256, it will always be a
98 …public function update($instanceName, $hash, $sizeBytes, BuildBazelRemoteExecutionV2ActionResult $… argument
100 …$params = ['instanceName' => $instanceName, 'hash' => $hash, 'sizeBytes' => $sizeBytes, 'postBody'…
H A DBlobs.php134 * @param string $hash The hash. In the case of SHA-256, it will always be a
149 public function getTree($instanceName, $hash, $sizeBytes, $optParams = []) argument
151 $params = ['instanceName' => $instanceName, 'hash' => $hash, 'sizeBytes' => $sizeBytes];
/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/apiclient-services/src/WebRisk/
H A DGoogleCloudWebriskV1SearchHashesResponseThreatHash.php30 public $hash; variable in Google\\Service\\WebRisk\\GoogleCloudWebriskV1SearchHashesResponseThreatHash
53 public function setHash($hash) argument
55 $this->hash = $hash;
62 return $this->hash;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTubeReporting/
H A DGdataMedia.php72 public $hash; variable in Google\\Service\\YouTubeReporting\\GdataMedia
351 public function setHash($hash) argument
353 $this->hash = $hash;
360 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 DCHANGELOG.md1045 * Added the ability to create any sort of hash for a stream rather than just an MD5 hash
1331 * Fixed a defect that added a hash to every parsed URL part
H A DUPGRADING.md896 …ponsible for handling the aggregation of multi-valued query string variables into a flattened hash.
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md106 Compose stream implementations based on a hash of functions.
438 ## `GuzzleHttp\Psr7\Utils::hash`
440 `public static function hash(StreamInterface $stream, string $algo, bool $rawOutput = false): strin…
442 Calculate a hash of a stream.
444 This method reads the entire stream to calculate a rolling hash, based on
572 | `hash` | `Utils::hash` |
662 Creates a URI from a hash of [`parse_url`](http://php.net/manual/en/function.parse-url.php) compone…
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DUtils.php127 public static function hash(StreamInterface $stream, $algo, $rawOutput = false) function in GuzzleHttp\\Psr7\\Utils
H A Dfunctions.php236 function hash(StreamInterface $stream, $algo, $rawOutput = false) function
238 return Utils::hash($stream, $algo, $rawOutput);
/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);
H A DPuTTY.php255 $hash = new Hash('sha256');
256 $hash->setKey($hashkey);
259 $hash = new Hash('sha1');
278 if (!hash_equals($hash->hash($source), $hmac)) {
320 $hash = new Hash('sha256');
321 $hash->setKey('');
324 $hash = new Hash('sha1');
343 $hash->setKey($hashkey);
351 $hash = new Hash('sha1');
359 $mac = $hash->hash($source);
[all …]
/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/phpseclib/phpseclib/phpseclib/Crypt/
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())

12345678910>>...19