fix(crypto): xiami subtract off by one (#9)
This commit is contained in:
parent
68e4aef4c6
commit
7caeb4b07b
@ -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