Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的十六进制公式。 (53+3C+7-1)xor (45+9B) 这个公式的结果是:75<-- hex 我的问题是我需要53使用另一个公式返回。
(53+3C+7-1)xor (45+9B)
75
53
一些伪代码:
int startValue = 0x53 int resultValue = (startValue + 3C + 7 - 1) xor (45 + 9B) int initialValue = (resultValue xor (45 + 9B)) - 3C - 7 + 1
因此,您只需对相同的 45+9B 进行异或运算并反转其他操作(+ 和 -)