// d3d10umddi.h
PFND3D11_1DDI_GETCERTIFICATE Pfnd3d111DdiGetcertificate;
VOID Pfnd3d111DdiGetcertificate(
D3D10DDI_HDEVICE hDevice,
const D3D11_1DDI_CERTIFICATE_INFO *pCertificateInfo,
UINT CertificateSize,
BYTE *pCertificate
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Returns a certificate that the display miniport driver uses for either the cryptographic session certificate or authenticated channel.
hDeviceA handle to the display device (graphics context).
pCertificateInfoA pointer to a D3D11_1DDI_CERTIFICATE_INFO structure that specifies the cryptographic session certificate or authenticated channel to return.
CertificateSizeThe size, in bytes, of the buffer that is referenced by the pCertificate parameter.
pCertificateA pointer to a byte array that receives the driver's certificate chain.
Based on the data in the D3D11_1DDI_CERTIFICATE_INFO structure, GetCertificate returns the certificate for either the cryptographic session or the authenticated channel. The driver uses this certificate to establish trust and perform key exchange for the session or channel.
Note The size, in bytes, of a driver's certificate chain can be queried by calling GetCertificateSize.