I saw the thread about using cookies from outside wordpress, but that was a solution based on php, which doesn't suit.
I need to have a transparent way to logon, whether using cookies or via IIS authetication methods.
The rest of the site is (classic) asp - which doesn't present an issue on the cookies front, other than the MD5 hash.
MD5 is a standard hash, it should be calculatable in any language. Like so:
http://www.freevbcode.com/ShowCode.Asp?ID=2366
Thanks! One I'd not seen before.
Wordpress has a standard format for its cookies?
Not exactly, no. But the MD5 algorithm is a standard one. If you use the password as the input to that algorithm, then you'll get the hash that is in the password cookie. Meaning you can set the cookies with your ASP or what have you.