I\'m trying to implement Negotiate (at least the Kerberos part) in a small web server. I\'ve figured out how to get a client to send me a Kerberos Negotiate Authorization he
Secur32.AcquireCredentialsHandle
to get a handleSecur32.AcceptSecurityContext
passing the handle and the tokenSecur32.QuerySecurityContextToken
passing the security contextnew WindowsIdentity(hToken)
using the output form step 4If you have any questions about any of these steps, I can elaborate and/or provide some sample code.