fix(crypto): xiami subtract off by one (#9)

This commit is contained in:
鲁树人 2023-05-09 21:01:46 +01:00
parent 1c1d234244
commit 72b3a9cec9

View File

@ -19,7 +19,7 @@ const u8Sub = (a: number, b: number) => {
return a - b;
}
return a + 0xff - b;
return a + 0x100 - b;
};
export class XiamiCrypto implements CryptoBase {