Home
last modified time | relevance | path

Searched refs:iv (Results 1 – 25 of 53) sorted by relevance

123

/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/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/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/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/dlcount/
H A Daction.php151 $iv = array();
154 $iv[$key] = intval($val);
155 if (strlen($val)>3 || strlen($val)<=0 || $iv[$key]<0 || $iv[$key]>255) {
159 if ($iv[0]==0) {
162 if ($iv[0]==127 && $iv[1]==0 && $iv[2]==0 && $iv[3]==1) {
/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/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Security/
H A DDigestMD5SecurityLayer.php145 [$iv, $key] = $this->generateKeyAndIV($cipher, $kc);
146 $data = openssl_decrypt($encrypted, self::CIPHERS[$cipher]['cipher'], $key, OPENSSL_NO_PADDING | OPENSSL_RAW_DATA, $iv);
192 [$iv, $key] = $this->generateKeyAndIV($cipher, $kc);
193 $encrypted = openssl_encrypt($data . $padding . $macBlock, self::CIPHERS[$cipher]['cipher'], $key, OPENSSL_NO_PADDING | OPENSSL_RAW_DATA, $iv);
347 $iv = substr($kc, 8, 8);
360 return [$iv, $key];
/plugin/davcard/vendor/sabre/vobject/lib/
H A DDateTimeParser.php142 $iv = new DateInterval($duration);
143 if ($invert) $iv->invert = true;
145 return $iv;
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DDateTimeParser.php142 $iv = new DateInterval($duration);
143 if ($invert) $iv->invert = true;
145 return $iv;
/plugin/davcal/vendor/sabre/vobject/lib/
H A DDateTimeParser.php142 $iv = new DateInterval($duration);
143 if ($invert) $iv->invert = true;
145 return $iv;
/plugin/webdav/vendor/sabre/vobject/lib/
H A DDateTimeParser.php156 $iv = new DateInterval($duration);
159 $iv->invert = true;
162 return $iv;
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DDateTimeParser.php161 $iv = new DateInterval($duration);
164 $iv->invert = true;
167 return $iv;
/plugin/pgn4web/pgn4web/
H A Dpgn4web.js2023 var iv, ih;
2024 if (initialVariation < 0) { iv = Math.max(numberOfVars + initialVariations, 0); }
2025 else { iv = Math.min(initialVariation, numberOfVars - 1); }
2029 GoToMove((StartPlyVar[iv] + (iv ? 1 : 0)), iv);
2032 GoToMove(StartPlyVar[iv] + PlyNumberVar[iv], iv);
2035 …GoToMove((StartPlyVar[iv] + (iv ? 1 : 0)) + Math.floor(Math.random()*(StartPlyVar[iv] + PlyNumberV…
2039 GoToMove((StartPlyVar[iv] + (iv ? 1 : 0)), iv);
2044 …if (initialHalfmove < 0) { ih = Math.max(StartPlyVar[iv] + PlyNumberVar[iv] + 1 + initialHalfmove,…
2045 else { ih = Math.min(initialHalfmove, StartPlyVar[iv] + PlyNumberVar[iv]); }
2046 GoToMove(ih, iv);
/plugin/discussion/lang/fi/
H A Dsubscribermail.txt5ivämäärä: @DATE@
/plugin/diagramsnet/lib/js/cryptojs/
H A Daes.min.js27 …{mode:b,padding:q}),reset:function(){v.reset.call(this);var a=this.cfg,b=a.iv,a=a.mode;if(this._xf…
29 …cryptor(c,d);b=l.finalize(b);l=l.cfg;return n.create({ciphertext:b,key:c,iv:l.iv,algorithm:a,mode:…
30 …,d);c=s.create(a.words.slice(b),4*c);a.sigBytes=4*b;return n.create({key:a,iv:c,salt:d})}},c=d.Pas…
31iv=d.iv;b=a.encrypt.call(this,b,c,d.key,l);b.mixIn(d);return b},decrypt:function(b,c,d,l){l=this.c…
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php61 public $iv = null; variable in XMLSecurityKey
304 $this->iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
305 mcrypt_generic_init($td, $this->key, $this->iv);
312 $encrypted_data = $this->iv.mcrypt_generic($td, $data);
322 $this->iv = substr($data, 0, $iv_length);
325 mcrypt_generic_init($td, $this->key, $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));
/plugin/pdfjs/pdfjs/web/locale/fi/
H A Dviewer.properties97 document_properties_creation_date=Luomispäivämäärä:
98 document_properties_modification_date=Muokkauspäivämäärä:
/plugin/yuriigantt/3rd/dhtmlxgantt/locale/
H A Dlocale_fi.js.map1 …\"Uusi tehtävä\",\n\t\tdhx_cal_today_button: \"Tänään\",\n\t\tday_tab: \"Päivä\",\n\t\tweek_tab: \…
/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/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...]

123