Rename OCSP response verify function

This commit is contained in:
Andres Amaya Garcia
2018-01-18 21:45:55 +00:00
parent 2acb20260c
commit 5e92c529f6
2 changed files with 2 additions and 2 deletions

View File

@@ -202,7 +202,7 @@ int mbedtls_x509_ocsp_response_parse( mbedtls_x509_ocsp_response *resp,
* \return 0 if the OCSP response was verified successfully, otherwise
* a specific X.509 error
*/
int mbedtls_x509_ocsp_verify_response( mbedtls_x509_ocsp_response *resp,
int mbedtls_x509_ocsp_response_verify( mbedtls_x509_ocsp_response *resp,
mbedtls_x509_crt *req_chain,
mbedtls_x509_crt *chain,
mbedtls_x509_crt *trust_ca,

View File

@@ -1775,7 +1775,7 @@ static int x509_ocsp_verify_responses( mbedtls_x509_ocsp_response *resp,
* - Do not have an auth_mode=optional flag
* - Need to check the revocation status of the OCSP response issuer
*/
int mbedtls_x509_ocsp_verify_response( mbedtls_x509_ocsp_response *resp,
int mbedtls_x509_ocsp_response_verify( mbedtls_x509_ocsp_response *resp,
mbedtls_x509_crt *req_chain,
mbedtls_x509_crt *chain,
mbedtls_x509_crt *trust_ca,