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

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.

Created with MrDocs