Search found 4 matches

by zkrige
Thu Mar 25, 2010 6:32 pm
Forum: madBasic
Topic: madCrypt and PHP - simple example needed
Replies: 7
Views: 26216

Ok.. done a bit of digging

it seems that Turbo Power (Open Source on www.sourceforge.net)

it has a blowfish CBC cipher
by zkrige
Thu Mar 25, 2010 6:13 pm
Forum: madBasic
Topic: madCrypt and PHP - simple example needed
Replies: 7
Views: 26216

incidentally,

ECB is seen as insecure compared to CBC
by zkrige
Thu Mar 25, 2010 6:06 pm
Forum: madBasic
Topic: madCrypt and PHP - simple example needed
Replies: 7
Views: 26216

unfortunately i'm even less of an encryption expert. the only reason i know PHP uses CBC (instead of ECB) is that I struggled to get java decrypting my info. I only got it working when I told java to create a cipher like this Cipher cipher = Cipher.getInstance("Blowfish/CBC/NoPadding"); af...
by zkrige
Thu Mar 25, 2010 4:54 pm
Forum: madBasic
Topic: madCrypt and PHP - simple example needed
Replies: 7
Views: 26216

madcrypt/php

I have a PHP app encrypting data. I can succesfully decrypt it in JAVA using blowfish CBC. I presume that the reason madCrypt cannot decrypt PHP blowfish data is that madCrypt has no CBC decrypt option. If you could add a decrypt type as a paremeter, I'm sure we will be able to decrypt PHP encrypted...