Fix typo in ocsp struct field name

This commit is contained in:
Andres Amaya Garcia
2017-09-26 16:59:57 +01:00
committed by Andres Amaya Garcia
parent f43bc1077c
commit b2ed34208d
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ typedef struct mbedtls_x509_ocsp_single_response {
mbedtls_x509_buf md_oid; /**< Hash algorithm used to generate issuerHashName and issuesKeyHash */
mbedtls_md_type_t md_alg; /**< Internal representation of the MD algorithm of the hash algorithm, e.g. MBEDTLS_MD_SHA256 */
mbedtls_x509_buf issuer_name_hash; /**< Hash of the issues's distinduished name (DN) */
mbedtls_x509_buf issues_key_hash; /**< Hash of issuer's public key */
mbedtls_x509_buf issuer_key_hash; /**< Hash of issuer's public key */
mbedtls_x509_buf serial; /**< The serial of the certificate that this SingleResponse corresponds to */
uint8_t cert_status; /**< The revocation status of the certificate with CertID, e.g. good, revoked, unknown */