Searched refs:OSSL_STORE_LOADER_CTX (Results 1 – 13 of 13) sorted by relevance
/netbsd/crypto/external/bsd/openssl/dist/apps/lib/ |
H A D | engine_loader.c | 44 static OSSL_STORE_LOADER_CTX *OSSL_STORE_LOADER_CTX_new(ENGINE *e, char *keyid) in OSSL_STORE_LOADER_CTX_new() 46 OSSL_STORE_LOADER_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx)); in OSSL_STORE_LOADER_CTX_new() 55 static void OSSL_STORE_LOADER_CTX_free(OSSL_STORE_LOADER_CTX *ctx) in OSSL_STORE_LOADER_CTX_free() 64 static OSSL_STORE_LOADER_CTX *engine_open(const OSSL_STORE_LOADER *loader, in engine_open() 72 OSSL_STORE_LOADER_CTX *ctx = NULL; in engine_open() 105 static int engine_expect(OSSL_STORE_LOADER_CTX *ctx, int expected) in engine_expect() 116 static OSSL_STORE_INFO *engine_load(OSSL_STORE_LOADER_CTX *ctx, in engine_load() 151 static int engine_eof(OSSL_STORE_LOADER_CTX *ctx) in engine_eof() 156 static int engine_error(OSSL_STORE_LOADER_CTX *ctx) in engine_error() 161 static int engine_close(OSSL_STORE_LOADER_CTX *ctx) in engine_close()
|
/netbsd/crypto/external/bsd/openssl.old/dist/doc/man3/ |
H A D | OSSL_STORE_LOADER.pod | 5 OSSL_STORE_LOADER, OSSL_STORE_LOADER_CTX, OSSL_STORE_LOADER_new, 31 typedef struct ossl_store_loader_ctx_st OSSL_STORE_LOADER_CTX; 33 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_open_fn)(const char *uri, 38 typedef int (*OSSL_STORE_ctrl_fn)(OSSL_STORE_LOADER_CTX *ctx, int cmd, 45 typedef int (*OSSL_STORE_find_fn)(OSSL_STORE_LOADER_CTX *ctx, 54 typedef int (*OSSL_STORE_eof_fn)(OSSL_STORE_LOADER_CTX *ctx); 57 typedef int (*OSSL_STORE_error_fn)(OSSL_STORE_LOADER_CTX *ctx); 60 typedef int (*OSSL_STORE_close_fn)(OSSL_STORE_LOADER_CTX *ctx); 132 This function takes a B<OSSL_STORE_LOADER_CTX> pointer and a 173 contents of the B<OSSL_STORE_LOADER_CTX> pointer. [all …]
|
/netbsd/crypto/external/bsd/openssl.old/dist/include/openssl/ |
H A D | store.h | 217 typedef struct ossl_store_loader_ctx_st OSSL_STORE_LOADER_CTX; typedef 218 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_open_fn)(const OSSL_STORE_LOADER 225 typedef int (*OSSL_STORE_ctrl_fn)(OSSL_STORE_LOADER_CTX *ctx, int cmd, 229 typedef int (*OSSL_STORE_expect_fn)(OSSL_STORE_LOADER_CTX *ctx, int expected); 232 typedef int (*OSSL_STORE_find_fn)(OSSL_STORE_LOADER_CTX *ctx, 236 typedef OSSL_STORE_INFO *(*OSSL_STORE_load_fn)(OSSL_STORE_LOADER_CTX *ctx, 241 typedef int (*OSSL_STORE_eof_fn)(OSSL_STORE_LOADER_CTX *ctx); 244 typedef int (*OSSL_STORE_error_fn)(OSSL_STORE_LOADER_CTX *ctx); 247 typedef int (*OSSL_STORE_close_fn)(OSSL_STORE_LOADER_CTX *ctx);
|
/netbsd/crypto/external/bsd/openssl/dist/include/openssl/ |
H A D | store.h | 286 typedef struct ossl_store_loader_ctx_st OSSL_STORE_LOADER_CTX; typedef 287 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_open_fn) 290 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_open_ex_fn) 295 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_attach_fn) 300 (OSSL_STORE_LOADER_CTX *ctx, int cmd, va_list args); 302 (OSSL_STORE_LOADER_CTX *ctx, int expected); 304 (OSSL_STORE_LOADER_CTX *ctx, const OSSL_STORE_SEARCH *criteria); 306 (OSSL_STORE_LOADER_CTX *ctx, const UI_METHOD *ui_method, void *ui_data); 307 typedef int (*OSSL_STORE_eof_fn)(OSSL_STORE_LOADER_CTX *ctx); 308 typedef int (*OSSL_STORE_error_fn)(OSSL_STORE_LOADER_CTX *ctx); [all …]
|
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/ |
H A D | OSSL_STORE_LOADER.pod | 15 OSSL_STORE_LOADER_CTX, OSSL_STORE_LOADER_new, 66 typedef struct ossl_store_loader_ctx_st OSSL_STORE_LOADER_CTX; 68 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_open_fn)( 72 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_open_ex_fn)( 77 typedef OSSL_STORE_LOADER_CTX *(*OSSL_STORE_attach_fn) 90 typedef int (*OSSL_STORE_find_fn)(OSSL_STORE_LOADER_CTX *ctx, 99 typedef int (*OSSL_STORE_eof_fn)(OSSL_STORE_LOADER_CTX *ctx); 102 typedef int (*OSSL_STORE_error_fn)(OSSL_STORE_LOADER_CTX *ctx); 105 typedef int (*OSSL_STORE_close_fn)(OSSL_STORE_LOADER_CTX *ctx); 220 This function takes a B<OSSL_STORE_LOADER_CTX> pointer and a [all …]
|
/netbsd/crypto/external/bsd/openssl/dist/crypto/store/ |
H A D | store_local.h | 124 typedef struct ossl_store_loader_ctx_st OSSL_STORE_LOADER_CTX; typedef 135 OSSL_STORE_LOADER_CTX *loader_ctx; 161 OSSL_STORE_LOADER_CTX *ossl_store_file_attach_pem_bio_int(BIO *bp); 162 int ossl_store_file_detach_pem_bio_int(OSSL_STORE_LOADER_CTX *ctx);
|
H A D | store_lib.c | 36 OSSL_STORE_LOADER_CTX *loader_ctx, in loader_set_params() 71 OSSL_STORE_LOADER_CTX *loader_ctx = NULL; in OSSL_STORE_open_ex() 972 OSSL_STORE_LOADER_CTX *loader_ctx = NULL; in OSSL_STORE_attach()
|
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/store/ |
H A D | loader_file.c | 778 static void OSSL_STORE_LOADER_CTX_free(OSSL_STORE_LOADER_CTX *ctx) in OSSL_STORE_LOADER_CTX_free() 797 OSSL_STORE_LOADER_CTX *ctx = NULL; in file_open() 963 static int file_expect(OSSL_STORE_LOADER_CTX *ctx, int expected) in file_expect() 1001 OSSL_STORE_LOADER_CTX *ossl_store_file_attach_pem_bio_int(BIO *bp) in ossl_store_file_attach_pem_bio_int() 1003 OSSL_STORE_LOADER_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx)); in ossl_store_file_attach_pem_bio_int() 1282 static int file_eof(OSSL_STORE_LOADER_CTX *ctx); 1283 static int file_error(OSSL_STORE_LOADER_CTX *ctx); 1284 static OSSL_STORE_INFO *file_load(OSSL_STORE_LOADER_CTX *ctx, in file_load() 1419 static int file_error(OSSL_STORE_LOADER_CTX *ctx) in file_error() 1424 static int file_eof(OSSL_STORE_LOADER_CTX *ctx) in file_eof() [all …]
|
H A D | store_local.h | 131 OSSL_STORE_LOADER_CTX *ossl_store_file_attach_pem_bio_int(BIO *bp); 132 int ossl_store_file_detach_pem_bio_int(OSSL_STORE_LOADER_CTX *ctx);
|
H A D | store_lib.c | 26 OSSL_STORE_LOADER_CTX *loader_ctx; 43 OSSL_STORE_LOADER_CTX *loader_ctx = NULL; in OSSL_STORE_open() 649 OSSL_STORE_LOADER_CTX *loader_ctx = NULL; in ossl_store_attach_pem_bio()
|
/netbsd/crypto/external/bsd/openssl/dist/engines/ |
H A D | e_loader_attic.c | 946 static OSSL_STORE_LOADER_CTX *file_open_ex in file_open_ex() 951 OSSL_STORE_LOADER_CTX *ctx = NULL; in file_open_ex() 1071 static OSSL_STORE_LOADER_CTX *file_open in file_open() 1078 static OSSL_STORE_LOADER_CTX *file_attach in file_attach() 1083 OSSL_STORE_LOADER_CTX *ctx = NULL; in file_attach() 1141 static int file_find(OSSL_STORE_LOADER_CTX *ctx, in file_find() 1511 static int file_eof(OSSL_STORE_LOADER_CTX *ctx); 1512 static int file_error(OSSL_STORE_LOADER_CTX *ctx); 1650 static int file_error(OSSL_STORE_LOADER_CTX *ctx) in file_error() 1655 static int file_eof(OSSL_STORE_LOADER_CTX *ctx) in file_eof() [all …]
|
/netbsd/crypto/external/bsd/openssl.old/dist/util/ |
H A D | private.num | 33 OSSL_STORE_LOADER_CTX datatype
|
/netbsd/crypto/external/bsd/openssl/dist/util/ |
H A D | other.syms | 81 OSSL_STORE_LOADER_CTX datatype
|