diff options
author | jmc <> | 2016-12-02 19:28:41 +0000 |
---|---|---|
committer | jmc <> | 2016-12-02 19:28:41 +0000 |
commit | 92e3251f85c680232fbb1ad5808ec9e7937e6de0 (patch) | |
tree | 152239405c56b48f3cd636b9eaab6631af067773 /src/lib/libcrypto/man/RSA_get_ex_new_index.3 | |
parent | edeca41299a79a482a3b568a3315d09a7684f347 (diff) | |
download | openbsd-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.3 | 11 |
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 |
109 | Several OpenSSL structures can have application specific data attached | 109 | Several OpenSSL structures can have application specific data attached |
110 | to them. | 110 | to them. |
111 | This has several potential uses, it can be used to cache data associated | 111 | This has several potential uses: it can be used to cache data associated |
112 | with a structure (for example the hash of some part of the structure) or | 112 | with a structure (for example the hash of some part of the structure) or |
113 | some additional data (for example a handle to the data in an external | 113 | some additional data (for example a handle to the data in an external |
114 | library). | 114 | library). |
@@ -145,13 +145,14 @@ important because the optional functions are called in order of | |||
145 | increasing index value. | 145 | increasing index value. |
146 | .Pp | 146 | .Pp |
147 | .Fn RSA_set_ex_data | 147 | .Fn RSA_set_ex_data |
148 | is used to set application specific data, the data is supplied in the | 148 | is used to set application specific data. |
149 | The data is supplied in the | ||
149 | .Fa arg | 150 | .Fa arg |
150 | parameter and its precise meaning is up to the application. | 151 | parameter 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 |
153 | is used to retrieve application specific data. | 154 | is used to retrieve application specific data. |
154 | The data is returned to the application, this will be the same value as | 155 | The data is returned to the application, which will be the same value as |
155 | supplied to a previous | 156 | supplied to a previous |
156 | .Fn RSA_set_ex_data | 157 | .Fn RSA_set_ex_data |
157 | call. | 158 | call. |