ahkscript / libcrypt.ahk

A collection of crypting and encoding functions from the community
MIT License
65 stars 18 forks source link

Blowfish #22

Open hi5 opened 9 years ago

hi5 commented 9 years ago

There used to be a small Blowfish script on ahk . com which used a DLL which is now hard to find but there are now implementations in JS http://dren.ch/js_blowfish/ and also in AutoIt http://www.autoitscript.com/forum/topic/44581-crypto-suite/?p=332160#entry332160 - doesn't look that complicated to translate to ahk but it gives me headaches so I won't try

nnnik commented 9 years ago

I like complicated things :3

vasili111 commented 9 years ago

I am not good at cryptography so I can't check it. I think there is Blowfish algorithm: https://github.com/shajul/Autohotkey/tree/master/Library/Blowfish and http://www.autohotkey.com/board/topic/4379-blowfish-encryption-dll-functions/

joedf commented 9 years ago

That would be great :+1:

hi5 commented 9 years ago

Indeed but that relies on a 3rd party DLL that is nowhere to be found (reliable) - as you can see from the JS and AutoIt links above it should be possible to do it all in pure AHK code.