Java equivalent of Delphi encryption?

1.3k Views Asked by At

I have a Delphi 2010 application, that uses the Lockbox component for encrypt data. The program is calling the Triple DES Encrypt String CBCEx function with Key128. The key is generated by function:

GenerateLMDKey(Key128, SizeOf(Key128), 'Leadmec');

I'm developing a web service in Java to access database data and feed an Android Application. I need to decrypt the password that was encrypted by the Delphi function. How do I do this? Is that really possible?

This is how the encrypted password looks like: ho+RZpDW8z7hxH2cyjaBDg==

0

There are 0 best solutions below