I have to decode a xml file encoded base64 with a key (1234) in java, I have been searching but I can't find a method to decode it with a key.
[EDIT]
The encrypted file has a zml extension (the application changes the extension from xml to zml when it's encrypted). I opened the zml file with 7zip and the software ask me for the password, I used the 1234 and i could see the decoded file.
The question is how can i simulate the same process with java, somehow 7zip knows that the file was encrypted in base64 and later ask my for the password.
How could you do that with java?
Best regards.