mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 11:33:02 +00:00
fix(crypto): xiami subtract off by one (#9)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user