OCSP_CERT_ID struttura (wincrypt.h)

La struttura OCSP_CERT_ID contiene informazioni per identificare un certificato in una richiesta OSP ( Online Certificate Status Protocol ) o risposta. Questa struttura viene usata nelle strutture OCSP_REQUEST_ENTRY e OCSP_BASIC_RESPONSE_ENTRY .

Sintassi

typedef struct _OCSP_CERT_ID {
  CRYPT_ALGORITHM_IDENTIFIER HashAlgorithm;
  CRYPT_HASH_BLOB            IssuerNameHash;
  CRYPT_HASH_BLOB            IssuerKeyHash;
  CRYPT_INTEGER_BLOB         SerialNumber;
} OCSP_CERT_ID, *POCSP_CERT_ID;

Members

HashAlgorithm

Struttura CRYPT_ALGORITHM_IDENTIFIER che specifica l'algoritmo usato per creare IssuerNameHash e IssuerKeyHash.

IssuerNameHash

CRYPT_HASH_BLOB che contiene un hash del nome soggetto dell'autorità di certificazione del certificato.

IssuerKeyHash

CRYPT_HASH_BLOB che contiene un hash della chiave pubblica dell'autorità di certificazione del certificato.

SerialNumber

BLOB che contiene il numero di serie del certificato. Per altre informazioni, vedere la descrizione del membro SerialNumber per CERT_INFO.

Requisiti

   
Client minimo supportato Windows Vista [solo app desktop]
Server minimo supportato Windows Server 2008 [solo app desktop]
Intestazione wincrypt.h

Vedi anche

CERT_INFO

CRYPT_ALGORITHM_IDENTIFIER

OCSP_BASIC_RESPONSE_ENTRY

OCSP_REQUEST_ENTRY