So on my crypter i want the option for the user to use either xor encryption or rc4, how can i do it so within the builder if rc4 or xor is checked then it builds it in that encryption?
So on my crypter i want the option for the user to use either xor encryption or rc4, how can i do it so within the builder if rc4 or xor is checked then it builds it in that encryption?
Well just make separate stubs, one use XOR and one use RC4, then in the builder, just have both modules/functions and a checkbox for each one.
Can you show me an example please? (you dont have to show the building of the stub, but just the options like If Check1.Value = 1 Then Build via RC4 else check value2 build via xor)
I tried this,
But it didn't work, and this is only part of my builders code (didnt include the actual building), so thats not the reason why its not working. any ideas?Code:Private Sub Form_Load() If Check1.Value = True Then ResBuffer() = LoadResData(101, "RC4") 'build Else End If If Check2.Value = True Then ResBuffer2() = LoadResData(101, "XoR") 'build else end if
Post the source code? Post an error description? How should people help u, when u nothing offer?
I got it to work, thank you.
There are currently 1 users browsing this thread. (0 members and 1 guests)