mirror of
https://git.unlock-music.dev/um/web.git
synced 2025-04-05 11:48:58 +08:00
21 lines
621 B
TypeScript
21 lines
621 B
TypeScript
// import { DecryptBuffer as DecryptQmcCacheBuffer } from '../qmccache';
|
|
// import fs from 'fs';
|
|
//
|
|
// const expectedBuffer = fs.readFileSync(__dirname + '/fixture/qmc_cache_expected.bin');
|
|
//
|
|
// const createInputBuffer = () => {
|
|
// const buffer = Buffer.alloc(256);
|
|
// for (let i = buffer.byteLength; i >= 0; i--) {
|
|
// buffer[i] = i;
|
|
// }
|
|
// return buffer;
|
|
// };
|
|
//
|
|
// describe('decrypt/qmccache', () => {
|
|
// it('should decrypt specified buffer correctly', () => {
|
|
// const input = createInputBuffer();
|
|
// DecryptQmcCacheBuffer(input);
|
|
// expect(input).toEqual(expectedBuffer);
|
|
// });
|
|
// });
|