| Author |
Message |
Topic: Space bar performs different task with each successive press |
greynite
Replies: 9
Views: 405
|
Forum: Ask for Help Posted: Wed Jun 04, 2008 4:04 pm Subject: Space bar performs different task with each successive press |
I'd go with [VxE]'s method, and add you should check your environment is what you think it is rather than assuming the [next] action is correct.
Better yet, why not use WinWait etc. to coordinate a ... |
Topic: Threads |
greynite
Replies: 1
Views: 59
|
Forum: Ask for Help Posted: Wed Jun 04, 2008 4:02 pm Subject: Threads |
| AHK is pseudo threaded -- the core EXE only runs as one OS level thread, however it runs scripts internally via multiple "threads". Look at critical |
Topic: Numbers Numbers Numbers, can someone help me make this work? |
greynite
Replies: 4
Views: 129
|
Forum: Ask for Help Posted: Wed Jun 04, 2008 3:55 pm Subject: Numbers Numbers Numbers, can someone help me make this work? |
How about:
value:=ln(input)
output:=exp(value)
Thus you could store 10 (decimal) as:
output:=exp(2.3025850929940456840179914546844)
|
Topic: Simple Obfuscation/Source Protection |
greynite
Replies: 2
Views: 417
|
Forum: Scripts & Functions Posted: Thu May 22, 2008 1:55 pm Subject: Simple Obfuscation/Source Protection |
| Why not just compile the script with a password? |
Topic: output encryption so 3rd party util can decrypt it |
greynite
Replies: 21
Views: 745
|
Forum: Ask for Help Posted: Wed May 21, 2008 10:42 pm Subject: output encryption so 3rd party util can decrypt it |
What encryption algoritms does your 3rd party program support?
3DES might be the best choice -- very mature (so you're not likely to get stung by any specific implementation), reasonably secure, an ... |
Topic: AES encryption: Translate Phyton code into AHK... |
greynite
Replies: 6
Views: 521
|
Forum: Ask for Help Posted: Tue May 20, 2008 9:14 am Subject: AES encryption: Translate Phyton code into AHK... |
No. You can encrypt any binary data invoking directly Crypt_AES().
Interestingly enough, someone just posted an example over in that thread of doing just [url=http://www.autohotkey.com/forum/viewto ... |
Topic: Best encryption for ahk |
greynite
Replies: 7
Views: 399
|
Forum: Ask for Help Posted: Tue May 20, 2008 9:04 am Subject: Best encryption for ahk |
write-only memory mentioned by
Pretty good regardless of your choice of cyper, since the primary attach vector is human -- in other words, the real issue is your choice of a key. The key should be ... |
Topic: AES encryption: Translate Phyton code into AHK... |
greynite
Replies: 6
Views: 521
|
Forum: Ask for Help Posted: Mon May 19, 2008 11:05 pm Subject: AES encryption: Translate Phyton code into AHK... |
probably you're missing
You're missing this...
1. How can I implement the AES encryptin in AHK? I've only found file encryptions for AES in the forum. |
Topic: AES encryption: Translate Phyton code into AHK... |
greynite
Replies: 6
Views: 521
|
Forum: Ask for Help Posted: Mon May 19, 2008 5:16 pm Subject: AES encryption: Translate Phyton code into AHK... |
| 1. I haven't seen a native implementation of AES in AHK, which I'm a little surprised by since it's pretty simple to port. So your out of luck for an easy answer. An excellent guide for doing so can b ... |
Topic: File encryption... |
greynite
Replies: 2
Views: 153
|
Forum: Ask for Help Posted: Mon May 19, 2008 6:23 am Subject: File encryption... |
Another idea would be to base64 encode your file. Very simple (aka very low computing overhead) and would make seeking to specific location in your file quite feasible.
It won't be the biggest lock ... |
Topic: Basic Encryption 2.7 |
greynite
Replies: 49
Views: 8005
|
Forum: Scripts & Functions Posted: Sat May 17, 2008 5:05 am Subject: gkEnc |
Inspired by Titan's script I wrote my own version. While it's no AES-256, I think it is stronger:
Adds a salt, which is shuffled based on the password
Runs a hash on the password to further prevent ... |
| |