|
|
|
@ -1,4 +1,10 @@
|
|
|
|
|
const staticCipherBox = new Uint8Array([
|
|
|
|
|
export interface QmcStreamCipher {
|
|
|
|
|
decrypt(buf: Uint8Array, offset: number): void
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class QmcStaticCipher implements QmcStreamCipher {
|
|
|
|
|
private static readonly staticCipherBox: Uint8Array = new Uint8Array([
|
|
|
|
|
0x77, 0x48, 0x32, 0x73, 0xDE, 0xF2, 0xC0, 0xC8, //0x00
|
|
|
|
|
0x95, 0xEC, 0x30, 0xB2, 0x51, 0xC3, 0xE1, 0xA0, //0x08
|
|
|
|
|
0x9E, 0xE6, 0x9D, 0xCF, 0xFA, 0x7F, 0x14, 0xD1, //0x10
|
|
|
|
@ -33,15 +39,9 @@ const staticCipherBox = new Uint8Array([
|
|
|
|
|
0xA5, 0x47, 0xF7, 0xF6, 0x00, 0x79, 0x4A, 0x11, //0xF8
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
export interface StreamCipher {
|
|
|
|
|
decrypt(buf: Uint8Array, offset: number): void
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class QmcStaticCipher implements StreamCipher {
|
|
|
|
|
|
|
|
|
|
public getMask(offset: number) {
|
|
|
|
|
if (offset > 0x7FFF) offset %= 0x7FFF
|
|
|
|
|
return staticCipherBox[(offset * offset + 27) & 0xff]
|
|
|
|
|
return QmcStaticCipher.staticCipherBox[(offset * offset + 27) & 0xff]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public decrypt(buf: Uint8Array, offset: number) {
|
|
|
|
@ -51,7 +51,7 @@ export class QmcStaticCipher implements StreamCipher {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export class QmcMapCipher implements StreamCipher {
|
|
|
|
|
export class QmcMapCipher implements QmcStreamCipher {
|
|
|
|
|
key: Uint8Array
|
|
|
|
|
n: number
|
|
|
|
|
|
|
|
|
@ -84,10 +84,10 @@ export class QmcMapCipher implements StreamCipher {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const FIRST_SEGMENT_SIZE = 0x80;
|
|
|
|
|
const SEGMENT_SIZE = 5120
|
|
|
|
|
export class QmcRC4Cipher implements QmcStreamCipher {
|
|
|
|
|
private static readonly FIRST_SEGMENT_SIZE = 0x80;
|
|
|
|
|
private static readonly SEGMENT_SIZE = 5120
|
|
|
|
|
|
|
|
|
|
export class QmcRC4Cipher implements StreamCipher {
|
|
|
|
|
S: Uint8Array
|
|
|
|
|
N: number
|
|
|
|
|
key: Uint8Array
|
|
|
|
@ -139,23 +139,23 @@ export class QmcRC4Cipher implements StreamCipher {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Initial segment
|
|
|
|
|
if (offset < FIRST_SEGMENT_SIZE) {
|
|
|
|
|
const len_segment = Math.min(buf.length, FIRST_SEGMENT_SIZE - offset);
|
|
|
|
|
if (offset < QmcRC4Cipher.FIRST_SEGMENT_SIZE) {
|
|
|
|
|
const len_segment = Math.min(buf.length, QmcRC4Cipher.FIRST_SEGMENT_SIZE - offset);
|
|
|
|
|
this.encFirstSegment(buf.subarray(0, len_segment), offset);
|
|
|
|
|
if (postProcess(len_segment)) return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// align segment
|
|
|
|
|
if (offset % SEGMENT_SIZE != 0) {
|
|
|
|
|
const len_segment = Math.min(SEGMENT_SIZE - (offset % SEGMENT_SIZE), toProcess);
|
|
|
|
|
if (offset % QmcRC4Cipher.SEGMENT_SIZE != 0) {
|
|
|
|
|
const len_segment = Math.min(QmcRC4Cipher.SEGMENT_SIZE - (offset % QmcRC4Cipher.SEGMENT_SIZE), toProcess);
|
|
|
|
|
this.encASegment(buf.subarray(processed, processed + len_segment), offset);
|
|
|
|
|
if (postProcess(len_segment)) return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Batch process segments
|
|
|
|
|
while (toProcess > SEGMENT_SIZE) {
|
|
|
|
|
this.encASegment(buf.subarray(processed, processed + SEGMENT_SIZE), offset);
|
|
|
|
|
postProcess(SEGMENT_SIZE)
|
|
|
|
|
while (toProcess > QmcRC4Cipher.SEGMENT_SIZE) {
|
|
|
|
|
this.encASegment(buf.subarray(processed, processed + QmcRC4Cipher.SEGMENT_SIZE), offset);
|
|
|
|
|
postProcess(QmcRC4Cipher.SEGMENT_SIZE)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Last segment (incomplete segment)
|
|
|
|
@ -168,7 +168,7 @@ export class QmcRC4Cipher implements StreamCipher {
|
|
|
|
|
private encFirstSegment(buf: Uint8Array, offset: number) {
|
|
|
|
|
for (let i = 0; i < buf.length; i++) {
|
|
|
|
|
|
|
|
|
|
buf[i] ^= this.key[this.getSegmentSkip(offset + i)];
|
|
|
|
|
buf[i] ^= this.key[this.getSegmentKey(offset + i)];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -178,7 +178,7 @@ export class QmcRC4Cipher implements StreamCipher {
|
|
|
|
|
|
|
|
|
|
// Calculate the number of bytes to skip.
|
|
|
|
|
// The initial "key" derived from segment id, plus the current offset.
|
|
|
|
|
const skipLen = (offset % SEGMENT_SIZE) + this.getSegmentSkip(offset / SEGMENT_SIZE)
|
|
|
|
|
const skipLen = (offset % QmcRC4Cipher.SEGMENT_SIZE) + this.getSegmentKey(offset / QmcRC4Cipher.SEGMENT_SIZE)
|
|
|
|
|
|
|
|
|
|
// decrypt the block
|
|
|
|
|
let j = 0;
|
|
|
|
@ -194,7 +194,7 @@ export class QmcRC4Cipher implements StreamCipher {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private getSegmentSkip(id: number): number {
|
|
|
|
|
private getSegmentKey(id: number): number {
|
|
|
|
|
const seed = this.key[id % this.N]
|
|
|
|
|
const idx = (this.hash / ((id + 1) * seed) * 100.0) | 0;
|
|
|
|
|
return idx % this.N
|
|
|
|
|