aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-12-08 15:51:31 +0100
committerRichard Levitte <levitte@openssl.org>2017-06-29 11:55:31 +0200
commit71a5516dcc8a91a9c4fbb724ea7e3658e85f2ad2 (patch)
treeba9b278594053af5efeb2af40d64ffb43007eabe /util
parentc785fd48e68611c837f4e30027c02b84525501af (diff)
downloadopenssl-71a5516dcc8a91a9c4fbb724ea7e3658e85f2ad2.tar.gz
Add the STORE module
This STORE module adds the following functionality: - A function OSSL_STORE_open(), OSSL_STORE_load() and OSSL_STORE_close() that accesses a URI and helps loading the supported objects (PKEYs, CERTs and CRLs for the moment) from it. - An opaque type OSSL_STORE_INFO that holds information on each loaded object. - A few functions to retrieve desired data from a OSSL_STORE_INFO reference. - Functions to register and unregister loaders for different URI schemes. This enables dynamic addition of loaders from applications or from engines. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3542)
Diffstat (limited to 'util')
-rw-r--r--util/libcrypto.num40
-rw-r--r--util/private.num11
2 files changed, 51 insertions, 0 deletions
diff --git a/util/libcrypto.num b/util/libcrypto.num
index 523a281c6a..3c651edd43 100644
--- a/util/libcrypto.num
+++ b/util/libcrypto.num
@@ -4300,3 +4300,43 @@ ERR_load_strings_const 4242 1_1_1 EXIST::FUNCTION:
ASN1_TIME_to_tm 4243 1_1_1 EXIST::FUNCTION:
ASN1_TIME_set_string_X509 4244 1_1_1 EXIST::FUNCTION:
OCSP_resp_get1_id 4245 1_1_1 EXIST::FUNCTION:OCSP
+OSSL_STORE_register_loader 4246 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_set_error 4247 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get0_PKEY 4248 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get_type 4249 1_1_1 EXIST::FUNCTION:
+ERR_load_OSSL_STORE_strings 4250 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_free 4251 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get1_PKEY 4252 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_free 4253 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_open_file 4254 1_1_1 NOEXIST::FUNCTION:
+OSSL_STORE_LOADER_set_eof 4255 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_new 4256 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get0_CERT 4257 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_set_close 4258 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_new_PARAMS 4259 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_new_PKEY 4260 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get1_PARAMS 4261 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get1_CRL 4262 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_error 4263 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get1_CERT 4264 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get0_PARAMS 4265 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_type_string 4266 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get1_NAME 4267 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_set_load 4268 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_get0_scheme 4269 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_open 4270 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_close 4271 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_new_CERT 4272 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get0_CRL 4273 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_load 4274 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get0_NAME 4275 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_unregister_loader 4276 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_new_CRL 4277 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_new_NAME 4278 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_eof 4279 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_set_open 4280 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_LOADER_set_ctrl 4281 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_ctrl 4282 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get0_NAME_description 4283 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_set0_NAME_description 4284 1_1_1 EXIST::FUNCTION:
+OSSL_STORE_INFO_get1_NAME_description 4285 1_1_1 EXIST::FUNCTION:
diff --git a/util/private.num b/util/private.num
index 2ad754f1b3..203b5316b0 100644
--- a/util/private.num
+++ b/util/private.num
@@ -20,6 +20,17 @@ CRYPTO_EX_new datatype
EVP_PKEY_gen_cb datatype
GEN_SESSION_CB datatype
OPENSSL_Applink external
+OSSL_STORE_CTX datatype
+OSSL_STORE_INFO datatype
+OSSL_STORE_LOADER datatype
+OSSL_STORE_LOADER_CTX datatype
+OSSL_STORE_close_fn datatype
+OSSL_STORE_ctrl_fn datatype
+OSSL_STORE_eof_fn datatype
+OSSL_STORE_error_fn datatype
+OSSL_STORE_load_fn datatype
+OSSL_STORE_open_fn datatype
+OSSL_STORE_post_process_info_fn datatype
SSL_CTX_keylog_cb_func datatype
SSL_early_cb_fn datatype
SSL_psk_client_cb_func datatype