|
@ -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
|
|
|
0x77, 0x48, 0x32, 0x73, 0xDE, 0xF2, 0xC0, 0xC8, //0x00
|
|
|
0x95, 0xEC, 0x30, 0xB2, 0x51, 0xC3, 0xE1, 0xA0, //0x08
|
|
|
0x95, 0xEC, 0x30, 0xB2, 0x51, 0xC3, 0xE1, 0xA0, //0x08
|
|
|
0x9E, 0xE6, 0x9D, 0xCF, 0xFA, 0x7F, 0x14, 0xD1, //0x10
|
|
|
0x9E, 0xE6, 0x9D, 0xCF, 0xFA, 0x7F, 0x14, 0xD1, //0x10
|
|
@ -31,17 +37,11 @@ const staticCipherBox = new Uint8Array([ |
|
|
0x77, 0xE4, 0xD9, 0xDA, 0xF9, 0xA4, 0x2B, 0x76, //0xE8
|
|
|
0x77, 0xE4, 0xD9, 0xDA, 0xF9, 0xA4, 0x2B, 0x76, //0xE8
|
|
|
0x1C, 0x71, 0xDB, 0x00, 0xBC, 0xFD, 0x0C, 0x6C, //0xF0
|
|
|
0x1C, 0x71, 0xDB, 0x00, 0xBC, 0xFD, 0x0C, 0x6C, //0xF0
|
|
|
0xA5, 0x47, 0xF7, 0xF6, 0x00, 0x79, 0x4A, 0x11, //0xF8
|
|
|
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) { |
|
|
public getMask(offset: number) { |
|
|
if (offset > 0x7FFF) offset %= 0x7FFF |
|
|
if (offset > 0x7FFF) offset %= 0x7FFF |
|
|
return staticCipherBox[(offset * offset + 27) & 0xff] |
|
|
return QmcStaticCipher.staticCipherBox[(offset * offset + 27) & 0xff] |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public decrypt(buf: Uint8Array, offset: number) { |
|
|
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 |
|
|
key: Uint8Array |
|
|
n: number |
|
|
n: number |
|
|
|
|
|
|
|
@ -84,10 +84,10 @@ export class QmcMapCipher implements StreamCipher { |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const FIRST_SEGMENT_SIZE = 0x80; |
|
|
export class QmcRC4Cipher implements QmcStreamCipher { |
|
|
const SEGMENT_SIZE = 5120 |
|
|
private static readonly FIRST_SEGMENT_SIZE = 0x80; |
|
|
|
|
|
private static readonly SEGMENT_SIZE = 5120 |
|
|
|
|
|
|
|
|
export class QmcRC4Cipher implements StreamCipher { |
|
|
|
|
|
S: Uint8Array |
|
|
S: Uint8Array |
|
|
N: number |
|
|
N: number |
|
|
key: Uint8Array |
|
|
key: Uint8Array |
|
@ -139,23 +139,23 @@ export class QmcRC4Cipher implements StreamCipher { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Initial segment
|
|
|
// Initial segment
|
|
|
if (offset < FIRST_SEGMENT_SIZE) { |
|
|
if (offset < QmcRC4Cipher.FIRST_SEGMENT_SIZE) { |
|
|
const len_segment = Math.min(buf.length, FIRST_SEGMENT_SIZE - offset); |
|
|
const len_segment = Math.min(buf.length, QmcRC4Cipher.FIRST_SEGMENT_SIZE - offset); |
|
|
this.encFirstSegment(buf.subarray(0, len_segment), offset); |
|
|
this.encFirstSegment(buf.subarray(0, len_segment), offset); |
|
|
if (postProcess(len_segment)) return |
|
|
if (postProcess(len_segment)) return |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// align segment
|
|
|
// align segment
|
|
|
if (offset % SEGMENT_SIZE != 0) { |
|
|
if (offset % QmcRC4Cipher.SEGMENT_SIZE != 0) { |
|
|
const len_segment = Math.min(SEGMENT_SIZE - (offset % SEGMENT_SIZE), toProcess); |
|
|
const len_segment = Math.min(QmcRC4Cipher.SEGMENT_SIZE - (offset % QmcRC4Cipher.SEGMENT_SIZE), toProcess); |
|
|
this.encASegment(buf.subarray(processed, processed + len_segment), offset); |
|
|
this.encASegment(buf.subarray(processed, processed + len_segment), offset); |
|
|
if (postProcess(len_segment)) return |
|
|
if (postProcess(len_segment)) return |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Batch process segments
|
|
|
// Batch process segments
|
|
|
while (toProcess > SEGMENT_SIZE) { |
|
|
while (toProcess > QmcRC4Cipher.SEGMENT_SIZE) { |
|
|
this.encASegment(buf.subarray(processed, processed + SEGMENT_SIZE), offset); |
|
|
this.encASegment(buf.subarray(processed, processed + QmcRC4Cipher.SEGMENT_SIZE), offset); |
|
|
postProcess(SEGMENT_SIZE) |
|
|
postProcess(QmcRC4Cipher.SEGMENT_SIZE) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Last segment (incomplete segment)
|
|
|
// Last segment (incomplete segment)
|
|
@ -168,7 +168,7 @@ export class QmcRC4Cipher implements StreamCipher { |
|
|
private encFirstSegment(buf: Uint8Array, offset: number) { |
|
|
private encFirstSegment(buf: Uint8Array, offset: number) { |
|
|
for (let i = 0; i < buf.length; i++) { |
|
|
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.
|
|
|
// Calculate the number of bytes to skip.
|
|
|
// The initial "key" derived from segment id, plus the current offset.
|
|
|
// 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
|
|
|
// decrypt the block
|
|
|
let j = 0; |
|
|
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 seed = this.key[id % this.N] |
|
|
const idx = (this.hash / ((id + 1) * seed) * 100.0) | 0; |
|
|
const idx = (this.hash / ((id + 1) * seed) * 100.0) | 0; |
|
|
return idx % this.N |
|
|
return idx % this.N |
|
|