1X509_STORE_CTX_get_ex_new_index(3) OpenSSL X509_STORE_CTX_get_ex_new_index(3)
2
3
4
6 X509_STORE_CTX_get_ex_new_index, X509_STORE_CTX_set_ex_data,
7 X509_STORE_CTX_get_ex_data - add application specific data to
8 X509_STORE_CTX structures
9
11 #include <openssl/x509_vfy.h>
12
13 int X509_STORE_CTX_get_ex_new_index(long argl, void *argp,
14 CRYPTO_EX_new *new_func,
15 CRYPTO_EX_dup *dup_func,
16 CRYPTO_EX_free *free_func);
17
18 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *d, int idx, void *arg);
19
20 void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *d, int idx);
21
23 These functions handle application specific data in X509_STORE_CTX
24 structures. Their usage is identical to that of
25 RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data() as
26 described in RSA_get_ex_new_index(3).
27
29 This mechanism is used internally by the ssl library to store the SSL
30 structure associated with a verification operation in an X509_STORE_CTX
31 structure.
32
34 RSA_get_ex_new_index(3)
35
37 X509_STORE_CTX_get_ex_new_index(), X509_STORE_CTX_set_ex_data() and
38 X509_STORE_CTX_get_ex_data() are available since OpenSSL 0.9.5.
39
40
41
421.0.2o 2018-03-27X509_STORE_CTX_get_ex_new_index(3)