提交 e034a44e 编写于 作者: L Liangliang He

enhance

上级 8f570c1e
......@@ -88,7 +88,8 @@ inline std::string ObfuscateSymbol(const std::string &src) {
dest[i] = ch;
continue;
}
dest[i] = encode_dict[(idx + 37) % encode_dict.size()];
// There is no collision if it's true for every char at every position
dest[i] = encode_dict[(idx + i + 31) % encode_dict.size()];
}
return std::move(dest);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册