SEC_CERTIFICATE_REQUEST_CONTEXT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntifs.h

typedef struct _SEC_CERTIFICATE_REQUEST_CONTEXT {
  unsigned char cbCertificateRequestContext;
  unsigned char rgCertificateRequestContext[ANYSIZE_ARRAY];
} SEC_CERTIFICATE_REQUEST_CONTEXT, *PSEC_CERTIFICATE_REQUEST_CONTEXT;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntifs-sec_certificate_request_context)

Description

The SEC_CERTIFICATE_REQUEST_CONTEXT structure provides the certificate request context when BufferType is SECBUFFER_CERTIFICATE_REQUEST_CONTEXT.

Members

cbCertificateRequestContext

The size in bytes of the rgCertificateRequestContext array.

rgCertificateRequestContext

The Transport Layer Security (TLS) 1.3 certificate request context. This context contains the payload bytes of the “opaque certificate_request_context<0..2^8-1>” field in the certificate request message, excluding the one byte size field that the protocol prepends to that buffer, that is stored as cbCertificateRequestContext.

See also

SecBuffer