Home | History | Annotate | Download | only in octane

Lines Matching refs:cipher

12955       var cipher = new this.streamCipherConstructor();
12958 return cipher.decryptBlock(data);
12963 var cipher = new this.stringCipherConstructor();
12965 data = cipher.decryptBlock(data);
13013 var cipher, checkData;
13021 cipher = new ARCFourCipher(encryptionKey);
13022 var checkData = cipher.encryptBlock(calculateMD5(hashData, 0, i));
13028 cipher = new ARCFourCipher(derivedKey);
13029 checkData = cipher.encryptBlock(checkData);
13032 cipher = new ARCFourCipher(encryptionKey);
13033 checkData = cipher.encryptBlock(hashData.subarray(0, 32));