X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=doc%2Fcrypto%2FRSA_get_ex_new_index.pod;h=920dc76325accad4afe00b77f094d0edcefb499e;hp=2d3d0a73904976260e0c1733f5a075776b8dbc8f;hb=de4b5989461a101b2b93987b5de47b5e39dbe1e3;hpb=d629757a8429118b7e5c51df3cc74f16b10170a5 diff --git a/doc/crypto/RSA_get_ex_new_index.pod b/doc/crypto/RSA_get_ex_new_index.pod index 2d3d0a7390..920dc76325 100644 --- a/doc/crypto/RSA_get_ex_new_index.pod +++ b/doc/crypto/RSA_get_ex_new_index.pod @@ -2,7 +2,7 @@ =head1 NAME -RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specific data to RSA structures. +RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specific data to RSA structures =head1 SYNOPSIS @@ -13,7 +13,7 @@ RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specifi CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func); - int RSA_set_ex_data(RSA *r,int idx,void *arg); + int RSA_set_ex_data(RSA *r, int idx, void *arg); void *RSA_get_ex_data(RSA *r, int idx); @@ -22,6 +22,7 @@ RSA_get_ex_new_index, RSA_set_ex_data, RSA_get_ex_data - add application specifi void free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp); + int dup_func(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d, int idx, long argl, void *argp); @@ -70,7 +71,7 @@ B and B take the same parameters. B is a pointer to the parent RSA structure. B is a the application specific data (this wont be of much use in B. B is a pointer to the B structure from the parent RSA structure: the functions -B and B can be called to manipulate +B and B can be called to manipulate it. The B parameter is the index: this will be the same value returned by B when the functions were initially registered. Finally the B and B parameters are the values originally passed to the same @@ -111,11 +112,11 @@ present in the parent RSA structure when it is called. =head1 SEE ALSO -L +L, L =head1 HISTORY -RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data are +RSA_get_ex_new_index(), RSA_set_ex_data() and RSA_get_ex_data() are available since SSLeay 0.9.0. =cut