Merge pull request #1773 from ejohnstown/critical-option

Certificate Extension Critical Check Optionality
pull/1782/head
toddouska 2018-08-23 08:21:19 -07:00 committed by GitHub
commit 8477d5ba1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -7000,13 +7000,15 @@ static int DecodeCertExtensions(DecodedCert* cert)
break;
default:
#ifndef WOLFSSL_NO_ASN_STRICT
/* While it is a failure to not support critical extensions,
* still parse the certificate ignoring the unsupported
* extension to allow caller to accept it with the verify
* callback. */
if (critical)
criticalFail = 1;
break;
#endif
break;
}
idx += length;
}