up vote 1 down vote favorite
share [g+] share [fb]

I have a database that encrypted with windows CAPICOM library with RC4. Following PHP script works fine on windows server.

    ...
$oCapiCapi = new COM("CAPICOM.EncryptedData");
$oCapiCapi -> Algorithm = 1;
$oCapiCapi -> Algorithm -> KeyLength = 3;
$oCapiCapi -> SetSecret('OURveRYSecretKey');
    ...
	$oCapiCapi -> Decrypt($orsd[1]);
	$Decrypted = $oCapiCapi -> Content;
    ...

I would like to decrypt the same database on linux server. How Should I do that? Can I decrypt the a data that encrypted with CAPICOM?

Thank you.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

CAPICOM uses standard encryption algorithms such as 3DES. If you parse the encrypted buffers yourself, you should be able to decode them using any language.

For details on CAPICOM buffers, start here: http://www.jensign.com/JavaScience/dotnet/DeriveBytes/index.html

If you're dealing with data from a single source using only one crypto algorithm, you should be able to simplify your buffer parsing code significantly.

link|improve this answer
feedback

This looks like your best bet: http://sourceforge.net/projects/rc4crypt/

Obviously, if you want to make your application cross-platform, you should abandon COM() entirely -- but I understand if that's beyond your control at this point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.