Fetret Posted June 22, 2008 Posted June 22, 2008 Hello! Any time I start learning a language I do a XOR encryptor as one of the basic programs, but I have been unable to do so in AutoIt. I just can't seem to figure out how to encrypt strings using XOR. I tried converting scripts to Binary or trying BitXOR() but to no avail. So I would be grateful if you can show how to do a string XOR operation. Also, is memory reading possible in AutoIt? If so, where can I find some documentation about it. Thanks!
Fetret Posted June 22, 2008 Author Posted June 22, 2008 Tiny bump, can't anyone help me? Also is there anyway to directly interface autoit with MSN without using memory reading? For example retrieving incoming messages etc...?
SkinnyWhiteGuy Posted June 22, 2008 Posted June 22, 2008 The BitXOR function only works on numbers here (32-bit unsigned, to be precise). If your trying to XOR a string, you need to convert each char of that string to a number, XOR it, then change it back to a string/binary and store it in your result. Search for RC4 and you'll see a few examples of it here.
AdmiralAlkex Posted June 22, 2008 Posted June 22, 2008 Also, is memory reading possible in AutoIt? If so, where can I find some documentation about it.Search for Nomad memory .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
system24 Posted June 23, 2008 Posted June 23, 2008 _StringEncrypt It's an UDF from String.au3. Check the Help File. [center]It's a question of mind over matter, if I don't mind, it doesn't matter.[/center]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now