Question Decrypt the XML file encrypted on SAP server using SSF API

monika.dhumal

New member
Joined
Jul 12, 2011
Messages
1
Programming Experience
Beginner
Hi all,

We have an encrypted xml file.
Encrypted file contains the encrypted secret key and encrypted data. ( both are in a single packet).

How to proceed with the decryption of the single data packet which contains bothe secrete key and data in the encrypted format?

Format used for Encryption is PKCS#7.

Please help.

It's Urgent.

Thanks in advanced.

Monika
 
If it's encrypted then you'll need whatever it was encrypted with - an asymmetric key, or a certificate perhaps, both of which would have likely been generated with a passphrase originally.

Without the decryption key, you'll not be getting the contents of that file (and if you could, what's the point of the encryption!)
 
Exactly what Menthos said. You can't encrypt your decryption key! It's like locking yourself out of your car with your keys inside.
Unfortunately, if you haven't got that decryption key there isn't much hope for getting into the file, so I do sincerely hope it has no sensitive or important information on it! Next time, be more careful with where you're storing your key!
 
Back
Top