I'm trying to write an integration script that I can use in the Workspace view that will let me Diff the local file with the remote file. It looks like the only way to do it is to get the FTP details and download the file myself, then feed the files to WinMerge (OSS Diff tool).
In order to do that, I need to decrypt the stored passwords for the accounts in Application Data\NuSphere\PhpED\config\accounts.cfg.
Here's what a stored password looks like in that file:
<pass type="pass">t8Y7LyhOUJK/jVHobm5gCwxkTgtilGsMnz6urtXDTthPWQue6fBBbckNWlUg4QmOgZsPyCJiaiPEK9DicAizNC1==</pass>
|
(this is not a real password)
Looks like 87 characters and then a "==". Anyone have any idea what the encryption algorithm used is, and what the salt might be? Not too hopeful about this.