Searched defs:x509_store_st (Results 1 – 1 of 1) sorted by relevance
/dflybsd-src/crypto/libressl/crypto/x509/ |
H A D | x509_lcl.h | 285 struct x509_store_st { struct 292 X509_VERIFY_PARAM *param; 295 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ 296 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ 297 int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */ 298 int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */ 299 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */ 300 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */ 301 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */ 302 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */ [all …]
|