Store application data on an ENGINE at an ex_data index.
Declared in <openssl/engine.h>
[[deprecated]]
int
ENGINE_set_ex_data(
ENGINE* e,
int idx,
void* arg);
Deprecated. Use of this entity is allowed but discouraged.
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| e | ENGINE whose CRYPTO_EX_DATA is updated. |
| idx | Index previously obtained from ENGINE_get_ex_new_index(). |
| arg | Pointer to store at idx. |