I've got a string I want to encrypt, and I want to do so in a way that a "classic" ASP application and an ASP.NET 2.0 application can decrypt it. What's the best way to do it?
I've been scouring the web for different solutions. I've looked at using DPAPI, but it's per-machine, so that's out. Too much work to encrypt it on every single server. I've also considered encrypting the value in the web.config, but "classic" ASP won't be able to read it.
Any other ideas out there?
Thanks in advance!