Home
last modified time | relevance | path

Searched refs:hashAlgorithm (Results 1 – 8 of 8) sorted by relevance

/plugin/gtime/gtlib/asn1/tsp/
H A DTSPMessageImprint.php44 private $hashAlgorithm; variable in TSPMessageImprint
70 $hashAlgorithm = new X509AlgorithmIdentifier();
71 $hashAlgorithm->decode($object->getObjectAt(0));
81 $this->setHashAlgorithm($hashAlgorithm);
95 $sequence->add($this->hashAlgorithm);
105 * @param X509AlgorithmIdentifier $hashAlgorithm the hash algorithm used
108 public function setHashAlgorithm($hashAlgorithm) { argument
110 if (!$hashAlgorithm instanceof X509AlgorithmIdentifier) {
114 $this->hashAlgorithm = $hashAlgorithm;
123 return $this->hashAlgorithm;
/plugin/gtime/gtlib/tsp/
H A DGTDataHash.php75 private $hashAlgorithm; variable in GTDataHash
89 * @param GTHashAlgorithm $hashAlgorithm hash algorithm to use
92 public function __construct($hashAlgorithm, $hashedMessage = null) { argument
94 if (empty($hashAlgorithm)) {
98 if (!($hashAlgorithm instanceof GTHashAlgorithm)) {
102 $this->hashAlgorithm = $hashAlgorithm;
106 $this->hashContext = hash_init($this->hashAlgorithm->getName());
252 return $this->hashAlgorithm;
288 $result = array($this->hashAlgorithm->getGtid());
329 $hashAlgorithm = GTHashAlgorithm::getByGtid($dataImprint[0]);
[all …]
H A DGTHashEntry.php30 private $hashAlgorithm; variable in GTHashEntry
38 * @param GTHashAlgorithm $hashAlgorithm
43 …public function __construct(GTHashAlgorithm $hashAlgorithm, $direction, GTDataHash $siblingHash, $… argument
45 $this->hashAlgorithm = $hashAlgorithm;
60 $hash = new GTDataHash($this->hashAlgorithm);
H A DGTPublicationsFile.php533 $hashAlgorithm = GTHashAlgorithm::getByGtid($this->content[$offset + self::TIME_SIZE]);
535 … $bytes = array_slice($this->content, $offset, self::TIME_SIZE + 1 + $hashAlgorithm->getLength());
552 $hashAlgorithm = GTHashAlgorithm::getByGtid($this->content[$offset]);
553 $hashLength = $hashAlgorithm->getLength() + 1;
H A DGTTimestamp.php207 $hashAlgorithm = $tstInfo->getMessageImprint()->getHashAlgorithm()->getAlgorithm();
209 $this->dataHash = new GTDataHash(GTHashAlgorithm::getByOid($hashAlgorithm), $hashedMessage);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DIdentitytoolkitRelyingpartyUploadAccountRequest.php46 public $hashAlgorithm; variable in Google\\Service\\IdentityToolkit\\IdentitytoolkitRelyingpartyUploadAccountRequest
151 public function setHashAlgorithm($hashAlgorithm) argument
153 $this->hashAlgorithm = $hashAlgorithm;
160 return $this->hashAlgorithm;
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js6000 …convertPasswordToHash: function convertPasswordToHash(password, hashAlgorithm, saltValue, spinCoun…
6001 hashAlgorithm = hashAlgorithm.toLowerCase();
6004 if (hashes.indexOf(hashAlgorithm) < 0) {
6005 throw new Error("Hash algorithm '".concat(hashAlgorithm, "' not supported!"));
6011 …var key = this.hash(hashAlgorithm, Buffer.from(saltValue, 'base64'), passwordBuffer); // Now regen…
6018 key = this.hash(hashAlgorithm, key, iterator);
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs10205 …","blockSize","keyBits","hashSize","cipherAlgorithm","cipherChaining","hashAlgorithm","saltValue"];