• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/x509/

Lines Matching defs:X509_LOOKUP

102                 -> X509_LOOKUP
104 -> X509_LOOKUP
134 typedef struct x509_lookup_st X509_LOOKUP;
136 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,
191 STACK_OF(X509_LOOKUP) *get_cert_methods;
229 } /* X509_LOOKUP */ ;
492 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m);
503 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
507 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type);
508 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type);
509 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type);
512 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method);
513 void X509_LOOKUP_free(X509_LOOKUP *ctx);
514 int X509_LOOKUP_init(X509_LOOKUP *ctx);
515 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type, X509_NAME *name,
517 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type, X509_NAME *name,
519 int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type,
522 int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str, int len,
524 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx);