Jump to content

Recommended Posts

Posted

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

Posted

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?

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
Posted

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

Posted

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
Posted (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 by Digisoul

73 108 111 118 101 65 117 116 111 105 116

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...