the algorithm is so simple that doesn't deserve a tool specific for it.
the program about I refer is DynDNS Update Client:
http://www.dyndns.com/support/clients/windows.htmlthe password is saved in the file config.dyndns located in %APPDATA%\DynDNS\Updater or "C:\Documents and Settings\All Users\Application Data\DynDNS\Updater"
the saved password is in hex format and is simply XORed with the word t6KzXhCh
a quick example of decoding it on the fly is through the usage of my
Xor and
hex2byte tools:
echo 194f3b1b2b1b34070652 | hex2byte - | xor - - t6KzXhCh
(194f3b1b2b1b34070652 is the encoded hex string of "mypassword")