I have a requirement to take credentials used for an external web service and cache them locally so that the user need not re-type their password each time they run the app. I can easily store these credentials in a SharedObject (cookie) but I don't want to store the password in plain-text here. Does anybody have any recommendations on an ecrypt/decrypt mechanism I can use for this? Also I have a requirement that any key used to encrypt can not be stored in the source code as a string literal.
Ryan

