Home
last modified time | relevance | path

Searched refs:decrypt (Results 26 – 40 of 40) sorted by path

12

/plugin/dokucrypt/
H A Dscript.js719 function decrypt(block, expandedKey) { function
933 decrypt(ciphertext.slice(block*bpb,(block+1)*bpb), expandedKey);
945 pt = decrypt(ciphertext.slice(0, bpb), expandedKey).concat(pt);
/plugin/dokucrypt2/
H A DREADME.md38 * 2022-08-08: Added ability and setting for copying the contents to the clipboard on decrypt.
H A Dscript.js32 /* Set up the decrypt button and necessary functionality. */
177 alert("failed to decrypt wiki__text");
224 this is called from <A HREF=> links to decrypt the inline html
240 // decrypt text
288 /* decrypt the text between <CRYPT> and </CRYPT> */
356 if(key!==false) { alert("failed to decrypt with provided key"); }
434 var prefix = "##### Encrypted: decrypt with ";
752 mixColumn(state, "decrypt");
753 shiftRow(state, "decrypt");
754 byteSub(state, "decrypt");
791 function decrypt(block, expandedKey) { global() function
[all...]
/plugin/encryptedpasswords/script/
H A DSubtleAES.js34 * @param {String} password Password to use to decrypt ciphertext
38 async decrypt(ciphertext, password, legacy = false) { method in SubtleAES
49 const key = await crypto.subtle.importKey('raw', hash, alg, false, ['decrypt']);
52 const plainBuffer = await crypto.subtle.decrypt(alg, key, cipher);
63 * @param {String} password Password to use to decrypt ciphertext
68 return await this.decrypt(ciphertext, password);
72 return await this.decrypt(ciphertext, password, true);
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md38 destination of a stream, useful for instance to encrypt/decrypt a
433decrypt”, “unzip”, “transform to…”. In such a scenario, the order
493 like decrypt, transform to, unzip… Actually, PHP comes with certain
/plugin/pdfjs/pdfjs/build/
H A Dpdf.worker.js17981 function DecryptStream(str, maybeLength, decrypt) {
17984 this.decrypt = decrypt;
18010 var decrypt = this.decrypt;
18011 chunk = decrypt(chunk, !hasMoreData);
48336 function decrypt(data, key, discardNumber) {
48404 …stream = new _stream.Stream(isBinary ? decrypt(data, EEXEC_ENCRYPT_KEY, 4) : decryptAscii(data, EE…
48485 return decrypt(bytes, CHAR_STRS_ENCRYPT_KEY, lenIV);
H A Dpdf.worker.js.map1decrypt","Ascii85Stream","TILDA_CHAR","Z_LOWER_CHAR","AsciiHexStream","UPSTREAM_BLOCK_SIZE","maxDe…
/plugin/pgpinlinesupport/
H A DPlugin.txt38 - Press decrypt and enter your password
H A DREADME.MD21 6) Press decrypt and enter your password
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Security/
H A DDigestMD5SecurityLayer.php99 $unwrapped = $this->decrypt($data, $context);
113 protected function decrypt(string $data, SaslContext $context): string function in FreeDSx\\Sasl\\Security\\DigestMD5SecurityLayer
117 throw new SaslException('The data to decrypt must be at least 16 bytes.');
148 throw new SaslException('Failed the decrypt the message.');
/plugin/securelogin/
H A DREADME.md97 …n` is set to `1` (true), so it knows the password was encrypted. It will decrypt the `securelogin`…
H A Daction.php35 list($request,) = explode(';', $this->slhlp->decrypt($_REQUEST['securelogin']));
H A Dadmin.php59 case "test": msg(urldecode($this->slhlp->decrypt($param['message']))); break;
H A Dhelper.php114 function decrypt($text) { function in helper_plugin_securelogin
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js36961 this._decrypt = decrypt;
37083 thing = this._mode.decrypt(this, chunk);
37437 exports.decrypt = function (self, block) {
37453 function encryptStart(self, data, decrypt) {
37606 exports.decrypt = function (self, block) {
37866 this._decrypt = decrypt;
37949 decrypt: true
37994 if (opts.decrypt) {
70161 data = decrypt(data, password);
70217 function decrypt(data, password) {
[all …]

12