summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/RSA_get_ex_new_index.3
diff options
context:
space:
mode:
authorjmc <>2016-12-02 19:28:41 +0000
committerjmc <>2016-12-02 19:28:41 +0000
commit92e3251f85c680232fbb1ad5808ec9e7937e6de0 (patch)
tree152239405c56b48f3cd636b9eaab6631af067773 /src/lib/libcrypto/man/RSA_get_ex_new_index.3
parentedeca41299a79a482a3b568a3315d09a7684f347 (diff)
downloadopenbsd-92e3251f85c680232fbb1ad5808ec9e7937e6de0.tar.gz
openbsd-92e3251f85c680232fbb1ad5808ec9e7937e6de0.tar.bz2
openbsd-92e3251f85c680232fbb1ad5808ec9e7937e6de0.zip
minor cleanup;
Diffstat (limited to 'src/lib/libcrypto/man/RSA_get_ex_new_index.3')
-rw-r--r--src/lib/libcrypto/man/RSA_get_ex_new_index.311
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/libcrypto/man/RSA_get_ex_new_index.3 b/src/lib/libcrypto/man/RSA_get_ex_new_index.3
index 559d3ee110..3476751630 100644
--- a/src/lib/libcrypto/man/RSA_get_ex_new_index.3
+++ b/src/lib/libcrypto/man/RSA_get_ex_new_index.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: RSA_get_ex_new_index.3,v 1.3 2016/11/29 16:46:41 schwarze Exp $ 1.\" $OpenBSD: RSA_get_ex_new_index.3,v 1.4 2016/12/02 19:28:41 jmc Exp $
2.\" OpenSSL 35cb565a Nov 19 15:49:30 2015 -0500 2.\" OpenSSL 35cb565a Nov 19 15:49:30 2015 -0500
3.\" 3.\"
4.\" This file was written by Ulf Moeller <ulf@openssl.org> and 4.\" This file was written by Ulf Moeller <ulf@openssl.org> and
@@ -49,7 +49,7 @@
49.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 49.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50.\" OF THE POSSIBILITY OF SUCH DAMAGE. 50.\" OF THE POSSIBILITY OF SUCH DAMAGE.
51.\" 51.\"
52.Dd $Mdocdate: November 29 2016 $ 52.Dd $Mdocdate: December 2 2016 $
53.Dt RSA_GET_EX_NEW_INDEX 3 53.Dt RSA_GET_EX_NEW_INDEX 3
54.Os 54.Os
55.Sh NAME 55.Sh NAME
@@ -108,7 +108,7 @@
108.Sh DESCRIPTION 108.Sh DESCRIPTION
109Several OpenSSL structures can have application specific data attached 109Several OpenSSL structures can have application specific data attached
110to them. 110to them.
111This has several potential uses, it can be used to cache data associated 111This has several potential uses: it can be used to cache data associated
112with a structure (for example the hash of some part of the structure) or 112with a structure (for example the hash of some part of the structure) or
113some additional data (for example a handle to the data in an external 113some additional data (for example a handle to the data in an external
114library). 114library).
@@ -145,13 +145,14 @@ important because the optional functions are called in order of
145increasing index value. 145increasing index value.
146.Pp 146.Pp
147.Fn RSA_set_ex_data 147.Fn RSA_set_ex_data
148is used to set application specific data, the data is supplied in the 148is used to set application specific data.
149The data is supplied in the
149.Fa arg 150.Fa arg
150parameter and its precise meaning is up to the application. 151parameter and its precise meaning is up to the application.
151.Pp 152.Pp
152.Fn RSA_get_ex_data 153.Fn RSA_get_ex_data
153is used to retrieve application specific data. 154is used to retrieve application specific data.
154The data is returned to the application, this will be the same value as 155The data is returned to the application, which will be the same value as
155supplied to a previous 156supplied to a previous
156.Fn RSA_set_ex_data 157.Fn RSA_set_ex_data
157call. 158call.