[#OSSL_STORE_delete] = OSSL_STORE_delete :mrdocs: Delete the object identified by `uri` from its store backend. == Synopsis Declared in `<openssl/store.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int OSSL_STORE_delete( char const* uri, xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* libctx, char const* propq, xref:UI_METHOD.adoc[UI_METHOD] const* ui_method, void* ui_data, xref:OSSL_PARAM.adoc[OSSL_PARAM] const params[]); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *uri* | URI of the object to delete. | *libctx* | Library context, or NULL for the default. | *propq* | Optional property query for fetching the loader, or NULL. | *ui_method* | UI method for passwords or other interactive input, or NULL. | *ui_data* | Application data passed to `ui_method` whenever it is used. | *params* | Optional OSSL_PARAM array passed to the loader, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#