Jump to content

blowfish encrypt


Digisoul
 Share

Recommended Posts

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
Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...