QuerySecurityPackageInfoW function (sspi.h)

Retrieves information about a specified security package. This information includes the bounds on sizes of authentication information, credentials, and contexts.

Syntax

KSECDDDECLSPEC SECURITY_STATUS SEC_ENTRY QuerySecurityPackageInfoW(
        PSECURITY_STRING pPackageName,
  [out] PSecPkgInfoW     *ppPackageInfo
);

Parameters

pPackageName

TBD

[out] ppPackageInfo

Pointer to a variable that receives a pointer to a SecPkgInfo structure containing information about the specified security package.

Return value

If the function succeeds, the return value is SEC_E_OK.

If the function fails, the return value is a nonzero error code.

Remarks

The caller must call the FreeContextBuffer function to free the buffer returned in ppPackageInfo.

Note

The sspi.h header defines QuerySecurityPackageInfo as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header sspi.h (include Security.h)
Library Secur32.lib
DLL Secur32.dll

See also

FreeContextBuffer

SSPI Functions

SecPkgInfo