X509_STORE_CTX_check_issued_fn

Callback type that checks whether issuer appears to have issued x.

Synopsis

Declared in <openssl/x509_vfy.h>

typedef int(* X509_STORE_CTX_check_issued_fn)(X509_STORE_CTX*, X509*, X509*);

Return Value

1 if issuer issued x, or 0 otherwise.

Parameters

NameDescription
ctxVerification context performing the check.
xCandidate subject certificate.
issuerCandidate issuer certificate.