| /src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| store.h | 34 * Typedef for the OSSL_STORE_INFO post processing callback. This can be used 35 * to massage the given OSSL_STORE_INFO, or to drop it entirely (by returning 38 typedef OSSL_STORE_INFO *(*OSSL_STORE_post_process_info_fn)(OSSL_STORE_INFO *, 74 * Returns a OSSL_STORE_INFO pointer, from which OpenSSL typed data can be 79 OSSL_STORE_INFO *OSSL_STORE_load(OSSL_STORE_CTX *ctx); 106 * Types of data that can be ossl_stored in a OSSL_STORE_INFO. 120 * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO 121 * and will therefore be freed when the OSSL_STORE_INFO is freed. 123 OSSL_STORE_INFO *OSSL_STORE_INFO_new_NAME(char *name) [all...] |
| ossl_typ.h | 176 typedef struct ossl_store_info_st OSSL_STORE_INFO;
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| store.h | 40 * Typedef for the OSSL_STORE_INFO post processing callback. This can be used 41 * to massage the given OSSL_STORE_INFO, or to drop it entirely (by returning 44 typedef OSSL_STORE_INFO *(*OSSL_STORE_post_process_info_fn)(OSSL_STORE_INFO *, 94 * Returns a OSSL_STORE_INFO pointer, from which OpenSSL typed data can be 99 OSSL_STORE_INFO *OSSL_STORE_load(OSSL_STORE_CTX *ctx); 153 * Types of data that can be ossl_stored in a OSSL_STORE_INFO. 168 * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO 169 * and will therefore be freed when the OSSL_STORE_INFO is freed. 171 OSSL_STORE_INFO *OSSL_STORE_INFO_new(int type, void *data) [all...] |
| types.h | 226 typedef struct ossl_store_info_st OSSL_STORE_INFO;
|
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| store.h | 40 * Typedef for the OSSL_STORE_INFO post processing callback. This can be used 41 * to massage the given OSSL_STORE_INFO, or to drop it entirely (by returning 44 typedef OSSL_STORE_INFO *(*OSSL_STORE_post_process_info_fn)(OSSL_STORE_INFO *, 94 * Returns a OSSL_STORE_INFO pointer, from which OpenSSL typed data can be 99 OSSL_STORE_INFO *OSSL_STORE_load(OSSL_STORE_CTX *ctx); 145 * Types of data that can be ossl_stored in a OSSL_STORE_INFO. 160 * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO 161 * and will therefore be freed when the OSSL_STORE_INFO is freed. 163 OSSL_STORE_INFO *OSSL_STORE_INFO_new(int type, void *data) [all...] |
| types.h | 212 typedef struct ossl_store_info_st OSSL_STORE_INFO;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/store/ |
| store_local.h | 19 * OSSL_STORE_INFO stuff 45 DEFINE_STACK_OF(OSSL_STORE_INFO) 48 * EMBEDDED is a special type of OSSL_STORE_INFO, specially for the file 59 OSSL_STORE_INFO *ossl_store_info_new_EMBEDDED(const char *new_pem_name, 61 BUF_MEM *ossl_store_info_get0_EMBEDDED_buffer(OSSL_STORE_INFO *info); 62 char *ossl_store_info_get0_EMBEDDED_pem_name(OSSL_STORE_INFO *info);
|
| store_lib.c | 166 OSSL_STORE_INFO *OSSL_STORE_load(OSSL_STORE_CTX *ctx) 168 OSSL_STORE_INFO *v = NULL; 235 * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO 236 * and will therefore be freed when the OSSL_STORE_INFO is freed. 238 static OSSL_STORE_INFO *store_info_new(int type, void *data) 240 OSSL_STORE_INFO *info = OPENSSL_zalloc(sizeof(*info)); 250 OSSL_STORE_INFO *OSSL_STORE_INFO_new_NAME(char *name) 252 OSSL_STORE_INFO *info = store_info_new(OSSL_STORE_INFO_NAME, NULL); 266 int OSSL_STORE_INFO_set0_NAME_description(OSSL_STORE_INFO *info, char *desc) 278 OSSL_STORE_INFO *OSSL_STORE_INFO_new_PARAMS(EVP_PKEY *params [all...] |
| loader_file.c | 132 * OpenSSL type and returns a OSSL_STORE_INFO with the decoded data. 158 * a OSSL_STORE_INFO 160 typedef OSSL_STORE_INFO *(*file_try_decode_fn)(const char *pem_name, 195 static OSSL_STORE_INFO *try_decode_PKCS12(const char *pem_name, 203 OSSL_STORE_INFO *store_info = NULL; 204 STACK_OF(OSSL_STORE_INFO) *ctx = *pctx; 243 OSSL_STORE_INFO *osi_pkey = NULL; 244 OSSL_STORE_INFO *osi_cert = NULL; 245 OSSL_STORE_INFO *osi_ca = NULL; 297 STACK_OF(OSSL_STORE_INFO) *ctx = ctx_ [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/store/ |
| store_local.h | 22 * OSSL_STORE_INFO stuff 43 DEFINE_STACK_OF(OSSL_STORE_INFO) 152 STACK_OF(OSSL_STORE_INFO) *cached_info; 175 OSSL_STORE_INFO *v; /* To be filled in */
|
| store_lib.c | 420 OSSL_STORE_INFO *OSSL_STORE_load(OSSL_STORE_CTX *ctx) 422 OSSL_STORE_INFO *v = NULL; 611 * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO 612 * and will therefore be freed when the OSSL_STORE_INFO is freed. 614 OSSL_STORE_INFO *OSSL_STORE_INFO_new(int type, void *data) 616 OSSL_STORE_INFO *info = OPENSSL_zalloc(sizeof(*info)); 626 OSSL_STORE_INFO *OSSL_STORE_INFO_new_NAME(char *name) 628 OSSL_STORE_INFO *info = OSSL_STORE_INFO_new(OSSL_STORE_INFO_NAME, NULL); 641 int OSSL_STORE_INFO_set0_NAME_description(OSSL_STORE_INFO *info, char *desc) 652 OSSL_STORE_INFO *OSSL_STORE_INFO_new_PARAMS(EVP_PKEY *params [all...] |
| store_result.c | 76 static int try_name(struct extracted_param_data_st *, OSSL_STORE_INFO **); 77 static int try_key(struct extracted_param_data_st *, OSSL_STORE_INFO **, 80 static int try_cert(struct extracted_param_data_st *, OSSL_STORE_INFO **, 82 static int try_crl(struct extracted_param_data_st *, OSSL_STORE_INFO **, 84 static int try_pkcs12(struct extracted_param_data_st *, OSSL_STORE_INFO **, 90 OSSL_STORE_INFO **v = &cbdata->v; 174 static int try_name(struct extracted_param_data_st *data, OSSL_STORE_INFO **v) 317 typedef OSSL_STORE_INFO *store_info_new_fn(EVP_PKEY *); 401 static int try_key(struct extracted_param_data_st *data, OSSL_STORE_INFO **v, 447 * We determined the object type for OSSL_STORE_INFO, whic [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/store/ |
| store_local.h | 22 * OSSL_STORE_INFO stuff 43 DEFINE_STACK_OF(OSSL_STORE_INFO) 151 STACK_OF(OSSL_STORE_INFO) *cached_info; 177 OSSL_STORE_INFO *v; /* To be filled in */
|
| store_lib.c | 401 OSSL_STORE_INFO *OSSL_STORE_load(OSSL_STORE_CTX *ctx) 403 OSSL_STORE_INFO *v = NULL; 539 * In all cases, ownership of the object is transferred to the OSSL_STORE_INFO 540 * and will therefore be freed when the OSSL_STORE_INFO is freed. 542 OSSL_STORE_INFO *OSSL_STORE_INFO_new(int type, void *data) 544 OSSL_STORE_INFO *info = OPENSSL_zalloc(sizeof(*info)); 554 OSSL_STORE_INFO *OSSL_STORE_INFO_new_NAME(char *name) 556 OSSL_STORE_INFO *info = OSSL_STORE_INFO_new(OSSL_STORE_INFO_NAME, NULL); 569 int OSSL_STORE_INFO_set0_NAME_description(OSSL_STORE_INFO *info, char *desc) 580 OSSL_STORE_INFO *OSSL_STORE_INFO_new_PARAMS(EVP_PKEY *params [all...] |
| store_result.c | 74 static int try_name(struct extracted_param_data_st *, OSSL_STORE_INFO **); 75 static int try_key(struct extracted_param_data_st *, OSSL_STORE_INFO **, 78 static int try_cert(struct extracted_param_data_st *, OSSL_STORE_INFO **, 80 static int try_crl(struct extracted_param_data_st *, OSSL_STORE_INFO **, 82 static int try_pkcs12(struct extracted_param_data_st *, OSSL_STORE_INFO **, 88 OSSL_STORE_INFO **v = &cbdata->v; 159 static int try_name(struct extracted_param_data_st *data, OSSL_STORE_INFO **v) 302 typedef OSSL_STORE_INFO *store_info_new_fn(EVP_PKEY *); 386 static int try_key(struct extracted_param_data_st *data, OSSL_STORE_INFO **v, 431 * We determined the object type for OSSL_STORE_INFO, whic [all...] |
| /src/crypto/external/apache2/openssl/dist/engines/ |
| e_loader_attic.c | 45 DEFINE_STACK_OF(OSSL_STORE_INFO) 153 * EMBEDDED is a special type of OSSL_STORE_INFO, specially for the file 155 * create an OSSL_STORE_INFO with a generic data pointer and arbitrary 163 /* Negative numbers are never used for public OSSL_STORE_INFO types */ 173 static struct embedded_st *get0_EMBEDDED(OSSL_STORE_INFO *info) 178 static void store_info_free(OSSL_STORE_INFO *info) 190 static OSSL_STORE_INFO *new_EMBEDDED(const char *new_pem_name, 193 OSSL_STORE_INFO *info = NULL; 228 * OpenSSL type and returns an OSSL_STORE_INFO with the decoded data. 256 * an OSSL_STORE_INFO [all...] |
| /src/crypto/external/bsd/openssl/dist/engines/ |
| e_loader_attic.c | 42 DEFINE_STACK_OF(OSSL_STORE_INFO) 153 * EMBEDDED is a special type of OSSL_STORE_INFO, specially for the file 155 * create an OSSL_STORE_INFO with a generic data pointer and arbitrary 163 /* Negative numbers are never used for public OSSL_STORE_INFO types */ 173 static struct embedded_st *get0_EMBEDDED(OSSL_STORE_INFO *info) 178 static void store_info_free(OSSL_STORE_INFO *info) 190 static OSSL_STORE_INFO *new_EMBEDDED(const char *new_pem_name, 193 OSSL_STORE_INFO *info = NULL; 229 * OpenSSL type and returns a OSSL_STORE_INFO with the decoded data. 257 * a OSSL_STORE_INFO [all...] |
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| engine_loader.c | 115 static OSSL_STORE_INFO *engine_load(OSSL_STORE_LOADER_CTX *ctx, 119 OSSL_STORE_INFO *info = NULL;
|
| /src/crypto/external/bsd/openssl/dist/apps/lib/ |
| engine_loader.c | 116 static OSSL_STORE_INFO *engine_load(OSSL_STORE_LOADER_CTX *ctx, 120 OSSL_STORE_INFO *info = NULL;
|
| /src/crypto/external/bsd/openssl/dist/crypto/x509/ |
| by_store.c | 50 OSSL_STORE_INFO *info = OSSL_STORE_load(ctx);
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| ossl_store_test.c | 76 OSSL_STORE_INFO *info;
|
| provider_pkey_test.c | 248 OSSL_STORE_INFO *info;
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| ossl_store_test.c | 104 OSSL_STORE_INFO *info = NULL; 145 OSSL_STORE_INFO *info;
|
| /src/crypto/external/apache2/openssl/dist/crypto/x509/ |
| by_store.c | 59 OSSL_STORE_INFO *info = OSSL_STORE_load(ctx);
|
| /src/crypto/external/bsd/openssl.old/dist/apps/ |
| storeutl.c | 376 OSSL_STORE_INFO *info = OSSL_STORE_load(store_ctx);
|