/third_party/openssl/doc/man3/ |
D | X509_LOOKUP.pod | 5 X509_LOOKUP, X509_LOOKUP_TYPE, 20 typedef x509_lookup_st X509_LOOKUP; 24 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method); 25 int X509_LOOKUP_init(X509_LOOKUP *ctx); 26 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx); 27 void X509_LOOKUP_free(X509_LOOKUP *ctx); 29 int X509_LOOKUP_set_method_data(X509_LOOKUP *ctx, void *data); 30 void *X509_LOOKUP_get_method_data(const X509_LOOKUP *ctx); 32 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, 34 int X509_LOOKUP_load_file(X509_LOOKUP *ctx, char *name, long type); [all …]
|
D | X509_LOOKUP_meth_new.pod | 21 - Routines to build up X509_LOOKUP methods 33 int (*new_item) (X509_LOOKUP *ctx)); 35 (X509_LOOKUP *ctx); 38 void (*free) (X509_LOOKUP *ctx)); 40 (X509_LOOKUP *ctx); 43 int (*init) (X509_LOOKUP *ctx)); 45 (X509_LOOKUP *ctx); 48 int (*shutdown) (X509_LOOKUP *ctx)); 50 (X509_LOOKUP *ctx); 52 typedef int (*X509_LOOKUP_ctrl_fn)(X509_LOOKUP *ctx, int cmd, const char *argc, [all …]
|
D | X509_STORE_add_cert.pod | 26 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *store, 75 X509_STORE_add_lookup() finds or creates a L<X509_LOOKUP(3)> with the 78 B<X509_LOOKUP> functions can look up objects in that store. 99 L<X509_LOOKUP(3)>, or NULL on error.
|
D | X509_LOOKUP_hash_dir.pod | 18 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type); 19 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type); 20 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type);
|
/third_party/openssl/include/openssl/ |
D | x509_vfy.h | 57 DEFINE_STACK_OF(X509_LOOKUP) 377 X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m); 381 typedef int (*X509_LOOKUP_ctrl_fn)(X509_LOOKUP *ctx, int cmd, const char *argc, 383 typedef int (*X509_LOOKUP_get_by_subject_fn)(X509_LOOKUP *ctx, 387 typedef int (*X509_LOOKUP_get_by_issuer_serial_fn)(X509_LOOKUP *ctx, 392 typedef int (*X509_LOOKUP_get_by_fingerprint_fn)(X509_LOOKUP *ctx, 397 typedef int (*X509_LOOKUP_get_by_alias_fn)(X509_LOOKUP *ctx, 407 int (*new_item) (X509_LOOKUP *ctx)); 409 (X509_LOOKUP *ctx); 412 void (*free_fn) (X509_LOOKUP *ctx)); [all …]
|
D | ossl_typ.h | 132 typedef struct x509_lookup_st X509_LOOKUP; typedef
|
/third_party/openssl/crypto/x509/ |
D | x509_local.h | 73 int (*new_item) (X509_LOOKUP *ctx); 74 void (*free) (X509_LOOKUP *ctx); 75 int (*init) (X509_LOOKUP *ctx); 76 int (*shutdown) (X509_LOOKUP *ctx); 77 int (*ctrl) (X509_LOOKUP *ctx, int cmd, const char *argc, long argl, 79 int (*get_by_subject) (X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, 81 int (*get_by_issuer_serial) (X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, 84 int (*get_by_fingerprint) (X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, 87 int (*get_by_alias) (X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, 110 STACK_OF(X509_LOOKUP) *get_cert_methods;
|
D | x509_meth.c | 47 int (*new_item) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_new_item() 54 (X509_LOOKUP *ctx) in X509_LOOKUP_meth_get_new_item() 61 void (*free_fn) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_free() 68 (X509_LOOKUP *ctx) in X509_LOOKUP_meth_get_free() 74 int (*init) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_init() 81 (X509_LOOKUP *ctx) in X509_LOOKUP_meth_get_init() 88 int (*shutdown) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_shutdown() 95 (X509_LOOKUP *ctx) in X509_LOOKUP_meth_get_shutdown()
|
D | x509_lu.c | 18 X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method) in X509_LOOKUP_new() 20 X509_LOOKUP *ret = OPENSSL_zalloc(sizeof(*ret)); in X509_LOOKUP_new() 35 void X509_LOOKUP_free(X509_LOOKUP *ctx) in X509_LOOKUP_free() 54 int X509_LOOKUP_init(X509_LOOKUP *ctx) in X509_LOOKUP_init() 64 int X509_LOOKUP_shutdown(X509_LOOKUP *ctx) in X509_LOOKUP_shutdown() 74 int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, long argl, in X509_LOOKUP_ctrl() 85 int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, in X509_LOOKUP_by_subject() 95 int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, in X509_LOOKUP_by_issuer_serial() 104 int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, in X509_LOOKUP_by_fingerprint() 113 int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, X509_LOOKUP_TYPE type, in X509_LOOKUP_by_alias() [all …]
|
D | by_dir.c | 42 static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, 44 static int new_dir(X509_LOOKUP *lu); 45 static void free_dir(X509_LOOKUP *lu); 47 static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type, 67 static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, in dir_ctrl() 93 static int new_dir(X509_LOOKUP *lu) in new_dir() 143 static void free_dir(X509_LOOKUP *lu) in free_dir() 211 static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type, in get_cert_by_subject()
|
D | by_file.c | 20 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc, 40 static int by_file_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, in by_file_ctrl() 74 int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type) in X509_load_cert_file() 131 int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type) in X509_load_crl_file() 188 int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type) in X509_load_cert_crl_file()
|
D | x509_d2.c | 17 X509_LOOKUP *lookup; in X509_STORE_set_default_paths() 38 X509_LOOKUP *lookup; in X509_STORE_load_locations()
|
/third_party/openssl/test/ |
D | x509_dup_cert_test.c | 22 X509_LOOKUP *lookup = NULL; in test_509_dup_cert()
|
D | verify_extra_test.c | 119 X509_LOOKUP *lookup = NULL; in test_alt_chains_cert_forgery()
|
/third_party/python/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 1935 X509_LOOKUP = x509_lookup_st variable 1940 ('new_item', CFUNCTYPE(c_int, POINTER(X509_LOOKUP))), 1941 ('free', CFUNCTYPE(None, POINTER(X509_LOOKUP))), 1942 ('init', CFUNCTYPE(c_int, POINTER(X509_LOOKUP))), 1943 ('shutdown', CFUNCTYPE(c_int, POINTER(X509_LOOKUP))), 1944 ('ctrl', CFUNCTYPE(c_int, POINTER(X509_LOOKUP), c_int, STRING, c_long, POINTER(STRING))), 1945 …('get_by_subject', CFUNCTYPE(c_int, POINTER(X509_LOOKUP), c_int, POINTER(X509_NAME), POINTER(X509_… 1946 …('get_by_issuer_serial', CFUNCTYPE(c_int, POINTER(X509_LOOKUP), c_int, POINTER(X509_NAME), POINTER… 1947 …('get_by_fingerprint', CFUNCTYPE(c_int, POINTER(X509_LOOKUP), c_int, POINTER(c_ubyte), c_int, POIN… 1948 …('get_by_alias', CFUNCTYPE(c_int, POINTER(X509_LOOKUP), c_int, STRING, c_int, POINTER(X509_OBJECT)…
|
/third_party/openssl/apps/ |
D | crl.c | 69 X509_LOOKUP *lookup = NULL; in crl_main()
|
D | ts.c | 939 X509_LOOKUP *lookup = NULL; in create_cert_store()
|
D | apps.c | 1237 X509_LOOKUP *lookup; in setup_verify()
|
/third_party/libwebsockets/test-apps/ |
D | test-client.c | 297 X509_LOOKUP *lookup; in callback_dumb_increment()
|
/third_party/openssl/util/ |
D | private.num | 78 X509_LOOKUP datatype
|
D | indent.pro | 444 -T X509_LOOKUP
|
/third_party/openssl/doc/man1/ |
D | verify.pod | 753 technique they still suffer from limitations in the underlying X509_LOOKUP
|
/third_party/openssl/ssl/ |
D | ssl_lib.c | 4149 X509_LOOKUP *lookup; in SSL_CTX_set_default_verify_dir() 4164 X509_LOOKUP *lookup; in SSL_CTX_set_default_verify_file()
|
/third_party/curl/lib/vtls/ |
D | openssl.c | 2590 X509_LOOKUP *lookup = NULL; in ossl_connect_step1()
|
/third_party/openssl/ |
D | NEWS | 217 X509_LOOKUP, X509_LOOKUP_METHOD
|