Symbol: check_issued
crypto/openssl/crypto/cmp/cmp_genm.c
192
X509_STORE_CTX_check_issued_fn check_issued = X509_STORE_CTX_get_check_issued(store_ctx);
crypto/openssl/crypto/cmp/cmp_genm.c
205
if ((*check_issued)(store_ctx, cert, issuer)) {
crypto/openssl/crypto/x509/x509_local.h
129
int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
crypto/openssl/crypto/x509/x509_lu.c
842
X509_STORE_CTX_check_issued_fn check_issued)
crypto/openssl/crypto/x509/x509_lu.c
844
xs->check_issued = check_issued;
crypto/openssl/crypto/x509/x509_lu.c
849
return xs->check_issued;
crypto/openssl/crypto/x509/x509_vfy.c
1700
if (!ctx->check_issued(ctx, issuer, issuer) && !verify_cb_crl(ctx, X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER))
crypto/openssl/crypto/x509/x509_vfy.c
2547
if (store != NULL && store->check_issued != NULL)
crypto/openssl/crypto/x509/x509_vfy.c
2548
ctx->check_issued = store->check_issued;
crypto/openssl/crypto/x509/x509_vfy.c
2550
ctx->check_issued = check_issued;
crypto/openssl/crypto/x509/x509_vfy.c
2759
return ctx->check_issued;
crypto/openssl/crypto/x509/x509_vfy.c
403
if (ctx->check_issued(ctx, x, candidate)) {
crypto/openssl/crypto/x509/x509_vfy.c
448
if (ctx->check_issued(ctx, x, obj->data.x509)) {
crypto/openssl/crypto/x509/x509_vfy.c
52
static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
crypto/openssl/include/crypto/x509.h
235
int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
crypto/openssl/include/openssl/x509_vfy.h
534
X509_STORE_CTX_check_issued_fn check_issued);