-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function names is not obfuscated #19
Comments
This is also true for class names and public methods on classes. I suspect the reason is straightforward: if you obfuscate only part of a project, there's no way to catch the references, so only things with a clearly defined scope are obfuscated. |
See #28 and my fork's branch hammer-implement for a mechanism to "fix" this behavior. |
Closing for #28 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Let's take very simple php:
Result:
Though variable name is scrambled, function name remains intact.
The text was updated successfully, but these errors were encountered: