fix(crypto): xiami subtract off by one (#9)
This commit is contained in:
parent
1c1d234244
commit
72b3a9cec9
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user