CRYPTO_set_ex_data(3) | LibreSSL | CRYPTO_set_ex_data(3) |
NAME
CRYPTO_set_ex_data, CRYPTO_get_ex_data - internal application specific data functionsSYNOPSIS
#include <openssl/crypto.h>
int CRYPTO_set_ex_data(CRYPTO_EX_DATA *r, int idx, void *arg);
void *CRYPTO_get_ex_data(CRYPTO_EX_DATA *r, int idx);
DESCRIPTION
Several OpenSSL structures can have application specific data attached to them. These functions are used internally by OpenSSL to manipulate application specific data attached to a specific structure.RETURN VALUES
CRYPTO_set_ex_data() returns 1 on success or 0 on failure.SEE ALSO
RSA_get_ex_new_index(3), DSA_get_ex_new_index(3), DH_get_ex_new_index(3)HISTORY
CRYPTO_set_ex_data() and CRYPTO_get_ex_data() have been available since SSLeay 0.9.0.2015-10-26 | LibreSSL |