What does HRESULT 0x00090314 (SEC_I_COMPLETE_AND_CONTINUE) mean?

 
Previous Next
SEC_I_COMPLETE_NEEDED SEC_I_LOCAL_LOGON

SEC_I_COMPLETE_AND_CONTINUE

SEC_I_COMPLETE_AND_CONTINUE means that SSPI has successfully produced a token, but two actions remain: call CompleteAuthToken and then continue the client or server handshake loop.

Required order

Complete the token first. Then send it to the peer, receive the next peer token, and call InitializeSecurityContext or AcceptSecurityContext again. Reversing the order can desynchronize the application protocol from the security package.

Diagnostic value

This is not an authentication failure. A failure after this point is usually in token transport, buffer ownership, or the next negotiation round, so log the status of every round rather than only the final result.

Microsoft: SSPI Status Codes · CompleteAuthToken


Looking for a different code? Search another status or error code.