Store application-specific data on a DSA object at a CRYPTO ex_data index (deprecated).
Declared in <openssl/dsa.h>
[[deprecated]]
int
DSA_set_ex_data(
DSA* d,
int idx,
void* arg);
Deprecated. Use of this entity is allowed but discouraged.
1 on success, or 0 on failure.
| 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()). |