🚧 Possible fix to decryption errors
This commit is contained in:
parent
f14be006be
commit
ddeb9f190f
1 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
import int32Mul from './lib/int32Mul';
|
||||||
import updateKeys from './lib/updateKeys';
|
import updateKeys from './lib/updateKeys';
|
||||||
|
|
||||||
export default function getDecryptor(decryptionKeys: [number, number, number]) {
|
export default function getDecryptor(decryptionKeys: [number, number, number]) {
|
||||||
|
@ -12,7 +13,7 @@ export default function getDecryptor(decryptionKeys: [number, number, number]) {
|
||||||
|
|
||||||
//decrypt byte
|
//decrypt byte
|
||||||
const keyPart = (key2 | 2) & 0xFFFF;
|
const keyPart = (key2 | 2) & 0xFFFF;
|
||||||
const decryptedByte = (keyPart * (keyPart ^ 1)) >>> 8;
|
const decryptedByte = int32Mul(keyPart, keyPart ^ 1) >>> 8;
|
||||||
curChar = (curChar ^ (decryptedByte & 0xFF)) & 0xFF;
|
curChar = (curChar ^ (decryptedByte & 0xFF)) & 0xFF;
|
||||||
|
|
||||||
//update keys
|
//update keys
|
||||||
|
|
Loading…
Reference in a new issue