• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/

Lines Matching defs:X509_LOOKUP

100 		-> X509_LOOKUP
102 -> X509_LOOKUP
133 typedef struct x509_lookup_st X509_LOOKUP;
135 DECLARE_STACK_OF(X509_LOOKUP)
142 int (*new_item)(X509_LOOKUP *ctx);
143 void (*free)(X509_LOOKUP *ctx);
144 int (*init)(X509_LOOKUP *ctx);
145 int (*shutdown)(X509_LOOKUP *ctx);
146 int (*ctrl)(X509_LOOKUP *ctx,int cmd,const char *argc,long argl,
148 int (*get_by_subject)(X509_LOOKUP *ctx,int type,X509_NAME *name,
150 int (*get_by_issuer_serial)(X509_LOOKUP *ctx,int type,X509_NAME *name,
152 int (*get_by_fingerprint)(X509_LOOKUP *ctx,int type,
155 int (*get_by_alias)(X509_LOOKUP *ctx,int type,char *str,int len,
188 STACK_OF(X509_LOOKUP) *get_cert_methods;
221 } /* X509_LOOKUP */;
402 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m);
413 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
417 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type);
418 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type);
419 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type);
423 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method);
424 void X509_LOOKUP_free(X509_LOOKUP *ctx);
425 int X509_LOOKUP_init(X509_LOOKUP *ctx);
426 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name,
428 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name,
430 int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type,
432 int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str,
434 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx);