hx509: Don't check if non-self-signed certs have a self-signing capable signature alg
We don't need the _hx509_self_signed_valid() check if the certificate is not self-signed.
This commit is contained in:
@@ -1207,7 +1207,7 @@ certificate_is_self_signed(hx509_context context,
|
|||||||
if (ret) {
|
if (ret) {
|
||||||
hx509_set_error_string(context, 0, ret,
|
hx509_set_error_string(context, 0, ret,
|
||||||
"Failed to check if self signed");
|
"Failed to check if self signed");
|
||||||
} else
|
} else if (diff == 0)
|
||||||
ret = _hx509_self_signed_valid(context, &cert->signatureAlgorithm);
|
ret = _hx509_self_signed_valid(context, &cert->signatureAlgorithm);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user