Home
last modified time | relevance | path

Searched refs:iv (Results 1 – 25 of 53) sorted by last modified time

123

/plugin/encryptedpasswords/script/
H A DSubtleAES.js20 const {hash, iv} = await this.derivePkdf2(password, salt, 'SHA-256', this.iterations);
22 const alg = {name: 'AES-CBC', iv: iv}; property in SubtleAES.encrypt.alg
41 let hash, iv;
43 ({hash, iv} = this.deriveMd5(password, salt));
45 ({hash, iv} = await this.derivePkdf2(password, salt, 'SHA-256', this.iterations));
48 const alg = {name: 'AES-CBC', iv: iv}; property in SubtleAES.decrypt.alg
128 * @return {Promise<{hash: Uint8Array, iv: Uint8Array}>}
149 iv
[all...]
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe829 iv es
1158 iv ing
1215 iv en
1318 iv ed
1445 iv id
1499 Ġact iv
2210 iv il
2219 iv al
2405 Ġd iv
3204 iv it
[all...]
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js36957 iv = calcIv(this, iv, ck);
37159 if (typeof iv === 'string') iv = Buffer.from(iv);
37288 if (typeof iv === 'string') iv = Buffer.from(iv);
37936 iv: iv,
37947 iv: iv,
38010 var iv = opts.iv;
38013 iv = Buffer.from(iv);
38018 iv: iv,
44615 this.iv[i] = iv[i];
44651 var iv = state.iv;
[all …]
/plugin/bpmnio/vendor/bpmn-js/dist/
H A Dbpmn-modeler.production.min.js194iv(e,t){this._handlerMap={},this._stack=[],this._stackIdx=-1,this._currentExecution={actions:[],di… class
/plugin/bpmnio/vendor/dmn-js/dist/
H A Ddmn-modeler.production.min.js21iv(o,u)):s&&i===o&&(t.hints.connectionStart=nv(r,u),function(e,t){var n=e.context,i=n.target,r=iv(… function
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/fi/
H A Dfi.txt
/plugin/ckgedit/ckeditor/lang/
H A Den.4.9.js.beautified570 "lowerRoman": "Lower Roman (i, ii, iii, iv, v, etc.)",
H A Den.js-4.9.merged5 …r Greek (alpha, beta, gamma, etc.)","lowerRoman":"Lower Roman (i, ii, iii, iv, v, etc.)","none":"N…
H A Den.js.4.95 …r Greek (alpha, beta, gamma, etc.)","lowerRoman":"Lower Roman (i, ii, iii, iv, v, etc.)","none":"N…
H A Den.js.unc5 …r Greek (alpha, beta, gamma, etc.)","lowerRoman":"Lower Roman (i, ii, iii, iv, v, etc.)","none":"N…
H A Dfr.js.unc500 "lowerRoman": "Nombres romains minuscules (i, ii, iii, iv, v, etc.)",
H A Dlang_array.txt494 "lowerRoman": "Lower Roman (i, ii, iii, iv, v, etc.)",
/plugin/ckgedit/lang/
H A Den.4.9.js.beautified570 "lowerRoman": "Lower Roman (i, ii, iii, iv, v, etc.)",
/plugin/html5video2/script/
H A Dvideo.min.js21 …D||"AES-128",uri:s.attributes.URI},"undefined"!=typeof s.attributes.IV&&(r.iv=s.attributes.IV)}els…
/plugin/discussion/lang/fi/
H A Dsubscribermail.txt5ivämäärä: @DATE@
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php142 $iv = new DateInterval($duration);
143 if ($invert) $iv->invert = true;
145 return $iv;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS1.php107 * @param string $iv
111 private static function generateSymmetricKey($password, $iv, $length) argument
114 $iv = substr($iv, 0, 8);
116 $symkey .= md5($symkey . $password . $iv, true);
151 $iv = Hex::decode(trim($matches[2]));
160 $crypto->setIV($iv);
197 $iv = Random::string($cipher->getBlockLength() >> 3);
198 $cipher->setKey(self::generateSymmetricKey($password, $iv, $cipher->getKeyLength() >> 3));
199 $cipher->setIV($iv);
200 $iv = strtoupper(Hex::encode($iv));
[all …]
H A DPKCS8.php408 $cipher->setIV($iv);
552 $iv = Random::string($crypto->getBlockLength() >> 3);
562 $params = ['octetString' => $iv];
566 'iv' => $iv
584 $crypto->setIV($iv);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php733 $this->iv = $this->origIV = $iv;
1260 $iv = substr($iv, 1) . $xor[0];
1326 $iv = mcrypt_generic($this->ecb, $iv);
1437 $iv = $this->encryptBlock($iv);
1451 $iv = substr($iv, 1) . $c;
1470 $iv = substr($iv, 1) . $xor[0];
1649 $iv = substr($iv, 1) . $xor[0];
1701 $iv = mcrypt_generic($this->ecb, $iv);
1803 $iv = $this->encryptBlock($iv);
1811 $iv = $this->encryptBlock($iv);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DTripleDES.php206 * @param string $iv
208 public function setIV($iv) argument
210 parent::setIV($iv);
212 $this->des[0]->setIV($iv);
213 $this->des[1]->setIV($iv);
214 $this->des[2]->setIV($iv);
H A DSalsa20.php321 $iv = pack('V', $this->counter) . $this->p2;
327 $iv
358 $iv = pack('V', $buffer['counter']) . $this->p2;
366 $iv
383 $iv = pack('V', $buffer['counter']) . $this->p2;
390 $iv
H A DRandom.php139 $iv = sha1($seed . 'C', true);
168 $crypto->setIV(substr($iv, 0, $crypto->getBlockLength() >> 3));
H A DRijndael.php527 if (is_string($this->iv) && strlen($this->iv) != $this->block_size) {
528 …throw new InconsistentSetupException('The IV length (' . strlen($this->iv) . ') does not match the…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/
H A DEncryption.php27 public $iv; variable in Google\\Service\\Transcoder\\Encryption
54 public function setIv($iv) argument
56 $this->iv = $iv;
63 return $this->iv;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1940 $iv = $kexHash->hash($keyBytes . $this->exchange_hash . 'A' . $this->session_id);
1941 while ($this->encrypt_block_size > strlen($iv)) {
1942 $iv .= $kexHash->hash($keyBytes . $this->exchange_hash . $iv);
1944 $this->encrypt->setIV(substr($iv, 0, $this->encrypt_block_size));
1985 $iv = $kexHash->hash($keyBytes . $this->exchange_hash . 'B' . $this->session_id);
1986 while ($this->decrypt_block_size > strlen($iv)) {
1987 $iv .= $kexHash->hash($keyBytes . $this->exchange_hash . $iv);
1989 $this->decrypt->setIV(substr($iv, 0, $this->decrypt_block_size));

123