We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the d2j-decrypt-string.sh can decrypt the d3xguard's earlier static String decrypt(III) style string encryption.
static String decrypt(III)
but the later version of d3xguard generate with a more complex pattern. and combine with the java reflection, the code looks like shit.
static byte[] array= { ... }; void amethod(){ //... String str = decrypt(array[5] ^ 3, 5, 3); //... }
The text was updated successfully, but these errors were encountered:
Merge pull request pxb1988#7 from nick-botticelli/main
43238bf
Fix inheritance issue in InvokePolymorphicExpr causing ClassCastException
pxb1988
No branches or pull requests
the d2j-decrypt-string.sh can decrypt the d3xguard's earlier
static String decrypt(III)
style string encryption.but the later version of d3xguard generate with a more complex pattern. and combine with the java reflection, the code looks like shit.
The text was updated successfully, but these errors were encountered: