Store application‐specific data on a DSA object at a CRYPTO ex_data index (deprecated).

Synopsis

Declared in <openssl/dsa.h>

[[deprecated]]
int
DSA_set_ex_data(
    DSA* d,
    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

d

DSA object to update.

idx

Index obtained from DSA_get_ex_new_index() / CRYPTO_get_ex_new_index().

arg

Pointer to store (ownership rules follow CRYPTO_set_ex_data()).

Created with MrDocs