Lines Matching defs:X509_LOOKUP

102 		-> X509_LOOKUP
104 -> X509_LOOKUP
135 typedef struct x509_lookup_st X509_LOOKUP;
137 DECLARE_STACK_OF(X509_LOOKUP)
144 int (*new_item)(X509_LOOKUP *ctx);
145 void (*free)(X509_LOOKUP *ctx);
146 int (*init)(X509_LOOKUP *ctx);
147 int (*shutdown)(X509_LOOKUP *ctx);
148 int (*ctrl)(X509_LOOKUP *ctx,int cmd,const char *argc,long argl,
150 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name,
152 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name,
154 int (*get_by_fingerprint)(X509_LOOKUP *ctx,int type,
157 int (*get_by_alias)(X509_LOOKUP *ctx,int type,char *str,int len,
190 STACK_OF(X509_LOOKUP) *get_cert_methods;
225 } /* X509_LOOKUP */;
435 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m);
446 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
450 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type);
451 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type);
452 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type);
456 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method);
457 void X509_LOOKUP_free(X509_LOOKUP *ctx);
458 int X509_LOOKUP_init(X509_LOOKUP *ctx);
459 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name,
461 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name,
463 int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type,
465 int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str,
467 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx);