> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# XNetworkingSecurityInformation

> XNetworkingSecurityInformation

# XNetworkingSecurityInformation

특정 URL 엔드포인트에 대한 HTTP 스택을 구성하는 데 사용되는 보안 정보를 정의합니다.

## 구문

```cpp theme={null}
typedef struct XNetworkingSecurityInformation {
    uint32_t enabledHttpSecurityProtocolFlags;
    size_t thumbprintCount;
    XNetworkingThumbprint* thumbprints;
} XNetworkingSecurityInformation
```

### 멤버

*enabledHttpSecurityProtocolFlags*\
형식: uint32\_t

이 URL 엔드포인트에 대해 HTTP 요청이 제한해야 하는 전송 계층 보안(TLS) 프로토콜을 나타내는 플래그의 비트마스크로, `WinHttpSetOption` 호출과 함께 `WINHTTP_OPTION_SECURE_PROTOCOLS` WinHTTP 옵션에 전달되어야 합니다. `WINHTTP_FLAG_SECURE_PROTOCOL_TLS1`, `WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_1`, `WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_2`, `WINHTTP_FLAG_SECURE_PROTOCOL_TLS1_3`의 조합이 될 수 있습니다.

*thumbprintCount*\
형식: size\_t

`thumbprints` 필드가 가리키는 배열의 지문(thumbprint) 수입니다.

*thumbprints*\
형식: [XNetworkingThumbprint](/reference/networking/xnetworking/structs/xnetworkingthumbprint)\*

이 URL 엔드포인트에 대해 서버가 제시하는 인증서 체인에 있을 것으로 예상되는 지문 배열입니다.

## 설명

이 구조체는 HTTP 스택을 구성하는 데 사용되는 보안 정보를 설명합니다. 특정 URL 엔드포인트에 대해 HTTP 요청이 제한해야 할 TLS 프로토콜을 결정합니다. 지문이 항상 존재하는 것은 아닙니다. 일반적인 Fiddler 사용에는 하나의 루트 지문이 있습니다.

## 요구 사항

**헤더:** XNetworking.h

**지원 플랫폼:** Windows, XBOX One 제품군 콘솔 및 XBOX Series 콘솔

## 개념 문서

* [WinHTTP 개요](/build/console-features/networking/web-requests/intro-winhttp)

## 함께 보기

[XNetworkingQuerySecurityInformationForUrlAsync](/reference/networking/xnetworking/functions/xnetworkingquerysecurityinformationforurlasync)\
[XNetworkingQuerySecurityInformationForUrlUtf16Async](/reference/networking/xnetworking/functions/xnetworkingquerysecurityinformationforurlutf16async)\
[XNetworking](/reference/networking/xnetworking/xnetworking_members)


## Related topics

- [XNetworkingVerifyServerCertificate](/ko/reference/networking/xnetworking/functions/xnetworkingverifyservercertificate.md)
- [XNetworkingQuerySecurityInformationForUrlAsyncResult](/ko/reference/networking/xnetworking/functions/xnetworkingquerysecurityinformationforurlasyncresult.md)
- [XNetworkingQuerySecurityInformationForUrlUtf16AsyncResult](/ko/reference/networking/xnetworking/functions/xnetworkingquerysecurityinformationforurlutf16asyncresult.md)
- [XNetworkingThumbprintType](/ko/reference/networking/xnetworking/enums/xnetworkingthumbprinttype.md)
- [WinHTTP 개요](/ko/build/console-features/networking/web-requests/intro-winhttp.md)
