Skip to content
Snippets Groups Projects
Unverified Commit 1fdab13f authored by Yuki1536's avatar Yuki1536
Browse files

Add x2m x3m decryptor

parent 1db42a10
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ export async function Decrypt(file: File, raw_filename: string, raw_ext: string)
}
}
const info = GetMetaFromFile(musicMeta.common.artist, musicMeta.common.title, raw_filename);
const info = GetMetaFromFile(raw_filename, musicMeta.common.title, musicMeta.common.artist);
return {
picture: "",
......@@ -48,7 +48,6 @@ export async function Decrypt(file: File, raw_filename: string, raw_ext: string)
function ProcessX2M(data: Uint8Array) {
const x2mHeaderSize = 1024;
// x2m Key in test format: ['x', 'm', 'l', 'y'];
const x2mKey = new Uint8Array([0x78, 0x6D, 0x6C, 0x79]);
let x2mScrambleTable = new Uint16Array(x2mHeaderSize);
if (x2mScrambleTableBytes.length != 2 * x2mHeaderSize)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment