Callback type that checks whether issuer appears to have issued x.
Declared in <openssl/x509_vfy.h>
typedef int(* X509_STORE_CTX_check_issued_fn)(X509_STORE_CTX*, X509*, X509*);
1 if issuer issued x, or 0 otherwise.
| Name | Description |
|---|---|
| ctx | Verification context performing the check. |
| x | Candidate subject certificate. |
| issuer | Candidate issuer certificate. |