Decrypt text from coldfusion
Moderator: General Moderators
Decrypt text from coldfusion
I have a page that receives the coldfusion encrypted value. How do I decrypt that. Is there any common algorithm that we can use with the same key? I tried BLOWFISH but I was not able to decrypt.
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
Re: Decrypt text from coldfusion
What was it encrypted with?
Re: Decrypt text from coldfusion
Oh dear, Schneier's own encryption didn't work?. Try ROT13 then. If this doesn't work as well, try checking the Coldfusion source to see which algorithm was used. Either one should work.
Re: Decrypt text from coldfusion
Thank you guys. I tried blowfish, DES, AES. Thank you for your advise about ROT13. I will try that.
Re: Decrypt text from coldfusion
*sigh*
Check the Coldfusion source for the algorithm used. You would also need the cipher key. You would also need a clue. Good luck.
Check the Coldfusion source for the algorithm used. You would also need the cipher key. You would also need a clue. Good luck.
Re: Decrypt text from coldfusion
Mordred,
I am not sure what is the clue. Coldfusion is using blowfish algorithem. Colfusion code looks like below
<cfset encObj = encrypt("This is my test string","12345678","BLOWFISH") >
Can you please help me with the key. I have access to both coldfusion and php code and I can make any changes you recommend.
Thanks.
I am not sure what is the clue. Coldfusion is using blowfish algorithem. Colfusion code looks like below
<cfset encObj = encrypt("This is my test string","12345678","BLOWFISH") >
Can you please help me with the key. I have access to both coldfusion and php code and I can make any changes you recommend.
Thanks.
Re: Decrypt text from coldfusion
mcrypt can do blowfish if you have it installed.
http://us3.php.net/manual/en/function.m ... eneric.php
http://us3.php.net/manual/en/function.m ... eneric.php