fritzone / obfy

A tiny C++ obfuscation framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

long not supported?

opened this issue · comments

for example

long foo = 34324234;
how to obfuscate this value?

long is supported, just use it the same way as an int, obfuscate with the N macro the number and Vthe variable.

    long foo;
    V(foo) = N(34324234);