Digisoul Posted December 15, 2008 Posted December 15, 2008 Hello guys some 1 can plz tell me that how can i encrypt any file with 448-bit blowfish encryption? any dll or any example ? 73 108 111 118 101 65 117 116 111 105 116
James Posted December 15, 2008 Posted December 15, 2008 Maybe if you provide what you have tried and an resources you have used... Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
PsaltyDS Posted December 15, 2008 Posted December 15, 2008 Hello guyssome 1 can plz tell me that how can i encrypt any file with 448-bit blowfish encryption? any dll or any example?Dog ate your search link?Crypto Suite by SkinnyWhiteGuy, including Blowfish.au3.Be sure to thank SkinnyWhiteGuy for the cool UDFs. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Digisoul Posted December 16, 2008 Author Posted December 16, 2008 Dog ate your search link? Crypto Suite by SkinnyWhiteGuy, including Blowfish.au3. Be sure to thank SkinnyWhiteGuy for the cool UDFs. Thanks for this PsaltyDS. but iam facing a bit problem. actually i m using SWF STUDIO for making a application. I have some files that i encrypt with SWF Studio, its use 448-bit blowfish encryption, and i want to decrypt it with autoit. my problem is that i have a file which have following encrypted data ÈÛþK®«ÛdöRpH¯¨Ü°¨L6Òh¢ÃµøÌw&ûSi=¿Fë-[ê9ëyþ%í¸DAy now when i open this file for reading. autoit shows nothing. how can i handle this thing? 73 108 111 118 101 65 117 116 111 105 116
Dampe Posted December 16, 2008 Posted December 16, 2008 Thanks for this PsaltyDS. but iam facing a bit problem. actually i m using SWF STUDIO for making a application. I have some files that i encrypt with SWF Studio, its use 448-bit blowfish encryption, and i want to decrypt it with autoit. my problem is that i have a file which have following encrypted data ÈÛþK®«ÛdöRpH¯¨Ü°¨L6Òh¢ÃµøÌw&ûSi=¿Fë-[ê9ëyþ%í¸DAy now when i open this file for reading. autoit shows nothing. how can i handle this thing? Read it in binary mode
Digisoul Posted December 16, 2008 Author Posted December 16, 2008 (edited) Read it in binary mode $key2="config123key" $h= FileOpen("D:\Data\config.dat",16) $message =FileRead($h) $plaintext2 = Blowfish($key2, $message, 1) ConsoleWrite($plaintext2 & @CRLF) Result is blank!? Edited December 16, 2008 by Digisoul 73 108 111 118 101 65 117 116 111 105 116
James Posted December 16, 2008 Posted December 16, 2008 This may sound stupid... But did you include the BlowFish() functon? Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
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