WINHTTP_SECURITY_INFO structure (winhttp.h)

The WINHTTP_SECURITY_INFO structure contains the SChannel connection and cipher information for a request.

Syntax

typedef struct _WINHTTP_SECURITY_INFO {
  SecPkgContext_ConnectionInfo ConnectionInfo;
  SecPkgContext_CipherInfo     CipherInfo;
} WINHTTP_SECURITY_INFO, *PWINHTTP_SECURITY_INFO;

Members

ConnectionInfo

SecPkgContext_ConnectionInfo containing the SChannel connection information for the request.

CipherInfo

SecPkgContext_CipherInfo containing the SChannel cipher information for the request.

Remarks

This structure is used with WinHttpQueryOption to retrieve security information for a request by specifying the WINHTTP_OPTION_SECURITY_INFO flag.

Requirements

Requirement Value
Minimum supported client Windows 10 Build 20348
Minimum supported server Windows 10 Build 20348
Header winhttp.h

See also

WinHttpQueryOption