Retrieves a list of the authentication services registered when the process called CoInitializeSecurity.
HRESULT CoQueryAuthenticationServices(
DWORD * pcAuthSvc, |
//Pointer to the number of entries returned in the array |
SOLE_AUTHENTICATION_SERVICE** prgAuthSvc |
//Pointer to an array of structures |
); |
Parameters
Return Values
E_OUTOFMEMORY, as well as the following:
Remarks
CoQueryAuthenticationServices retrieves a list of the authentication services currently registered. If the process calls CoInitializeSecurity, these are the services registered through that call; if not, those registered by default by OLE.
This function is primarily useful for custom marshalers, to determine which principal names an application can use.
Different authentication services support different levels of security. For example, NTLMSSP does not support delegation or mutual authentication while Kerberos does. The application is responsible only for registering authentication services that provide the features the application needs. This is the way to query which services have been registered with CoInitializeSecurity.
See Also
CoInitializeSecurity, SOLE_AUTHENTICATION_SERVICE structure, Security in COM