Lines Matching refs:store
11 - implementation method store and query
20 void ossl_method_store_free(OSSL_METHOD_STORE *store);
23 int ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov,
27 int ossl_method_store_remove(OSSL_METHOD_STORE *store,
29 int ossl_method_store_fetch(OSSL_METHOD_STORE *store,
32 int ossl_method_store_remove_all_provided(OSSL_METHOD_STORE *store,
35 int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov,
37 int ossl_method_store_cache_set(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov,
41 void ossl_method_store_cache_flush_all(OSSL_METHOD_STORE *store);
60 ossl_method_store_init() initialises the method store subsystem in the scope of
64 store subsystem in the scope of the library context I<ctx>.
66 ossl_method_store_new() create a new empty method store using the supplied
69 ossl_method_store_free() frees resources allocated to I<store>.
72 the provider I<prov> to the I<store> as an instance of an algorithm indicated by
73 I<nid> and the property definition I<properties>, unless the I<store> already
78 fails to add the method to the store, or later on when it is being released from
79 the I<store>.
82 I<store>.
84 ossl_method_store_fetch() queries I<store> for a method identified by I<nid>
90 ossl_method_store_remove_all_provided() removes all methods from I<store>
96 ossl_method_store_cache_get() queries the cache associated with the I<store>
104 provider I<prov>, with the property query I<prop_query> in the I<store>.
111 I<store>.
121 ossl_method_store_new() returns a new method store object or NULL on failure.