• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/x509/

Lines Matching refs:X509_STORE_CTX

104 SSL	-> X509_STORE_CTX
108 A X509_STORE_CTX is used while validating a single certificate.
171 * inherited by X509_STORE_CTX when it is initialised.
178 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */
179 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */
180 int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */
181 int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */
182 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
183 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
184 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */
185 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */
186 int (*cleanup)(X509_STORE_CTX *ctx);
190 int depth; /* how deep to look (still unused -- X509_STORE_CTX's depth is used) */
212 struct x509_store_ctx_st /* X509_STORE_CTX */
227 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */
228 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */
229 int (*get_issuer)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */
230 int (*check_issued)(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); /* check issued */
231 int (*check_revocation)(X509_STORE_CTX *ctx); /* Check revocation status of chain */
232 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
233 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */
234 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */
235 int (*cleanup)(X509_STORE_CTX *ctx);
251 } /* X509_STORE_CTX */;
342 X509_STORE_CTX *X509_STORE_CTX_new(void);
344 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x);
346 void X509_STORE_CTX_free(X509_STORE_CTX *ctx);
347 int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store,
349 void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx, STACK_OF(X509) *sk);
350 void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx);
360 int X509_STORE_get_by_subject(X509_STORE_CTX *vs,int type,X509_NAME *name,
394 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx,int idx,void *data);
395 void * X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx,int idx);
396 int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx);
397 void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx,int s);
398 int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx);
399 X509 * X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx);
400 STACK_OF(X509) *X509_STORE_CTX_get_chain(X509_STORE_CTX *ctx);
401 STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx);
402 void X509_STORE_CTX_set_cert(X509_STORE_CTX *c,X509 *x);
403 void X509_STORE_CTX_set_chain(X509_STORE_CTX *c,STACK_OF(X509) *sk);
404 int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose);
405 int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust);
406 int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose,
408 void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx, long flags);
409 void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx, long flags, time_t t);
410 void X509_STORE_CTX_set_verify_cb(X509_STORE_CTX *ctx,
411 int (*verify_cb)(int, X509_STORE_CTX *));