ENGINE_set_ex_data

Store application data on an ENGINE at an ex_data index.

Synopsis

Declared in <openssl/engine.h>

[[deprecated]]
int
ENGINE_set_ex_data(
    ENGINE* e,
    int idx,
    void* arg);

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
eENGINE whose CRYPTO_EX_DATA is updated.
idxIndex previously obtained from ENGINE_get_ex_new_index().
argPointer to store at idx.