diff options
author | jmc <> | 2016-11-10 14:34:18 +0000 |
---|---|---|
committer | jmc <> | 2016-11-10 14:34:18 +0000 |
commit | f09d61b594eba5f8f4ebf834ec2f18203636bcf5 (patch) | |
tree | 8e5a7bb432fb01e6ee508c5a7327eb41f4a0c92a /src/lib/libcrypto/man/CRYPTO_set_ex_data.3 | |
parent | e19a4e15d73261c4eaf9f544789343e0ae570455 (diff) | |
download | openbsd-f09d61b594eba5f8f4ebf834ec2f18203636bcf5.tar.gz openbsd-f09d61b594eba5f8f4ebf834ec2f18203636bcf5.tar.bz2 openbsd-f09d61b594eba5f8f4ebf834ec2f18203636bcf5.zip |
various cleanup;
Diffstat (limited to 'src/lib/libcrypto/man/CRYPTO_set_ex_data.3')
-rw-r--r-- | src/lib/libcrypto/man/CRYPTO_set_ex_data.3 | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/lib/libcrypto/man/CRYPTO_set_ex_data.3 b/src/lib/libcrypto/man/CRYPTO_set_ex_data.3 index d7a88b5293..afdaa7a418 100644 --- a/src/lib/libcrypto/man/CRYPTO_set_ex_data.3 +++ b/src/lib/libcrypto/man/CRYPTO_set_ex_data.3 | |||
@@ -1,6 +1,6 @@ | |||
1 | .\" $OpenBSD: CRYPTO_set_ex_data.3,v 1.2 2016/11/06 15:52:50 jmc Exp $ | 1 | .\" $OpenBSD: CRYPTO_set_ex_data.3,v 1.3 2016/11/10 14:34:18 jmc Exp $ |
2 | .\" | 2 | .\" |
3 | .Dd $Mdocdate: November 6 2016 $ | 3 | .Dd $Mdocdate: November 10 2016 $ |
4 | .Dt CRYPTO_SET_EX_DATA 3 | 4 | .Dt CRYPTO_SET_EX_DATA 3 |
5 | .Os | 5 | .Os |
6 | .Sh NAME | 6 | .Sh NAME |
@@ -33,18 +33,19 @@ structures passed to the | |||
33 | .Fn free_func , | 33 | .Fn free_func , |
34 | and | 34 | and |
35 | .Fn dup_func | 35 | .Fn dup_func |
36 | callbacks: as passed to | 36 | callbacks, as passed to |
37 | .Xr RSA_get_ex_new_index 3 | 37 | .Xr RSA_get_ex_new_index 3 , |
38 | for example. | 38 | for example. |
39 | .Pp | 39 | .Pp |
40 | .Fn CRYPTO_set_ex_data | 40 | .Fn CRYPTO_set_ex_data |
41 | is used to set application specific data, the data is supplied in the | 41 | is used to set application specific data. |
42 | The data is supplied in the | ||
42 | .Fa arg | 43 | .Fa arg |
43 | parameter and its precise meaning is up to the application. | 44 | parameter and its precise meaning is up to the application. |
44 | .Pp | 45 | .Pp |
45 | .Fn CRYPTO_get_ex_data | 46 | .Fn CRYPTO_get_ex_data |
46 | is used to retrieve application specific data. | 47 | is used to retrieve application specific data. |
47 | The data is returned to the application, this will be the same value as | 48 | The data is returned to the application; this will be the same value as |
48 | supplied to a previous | 49 | supplied to a previous |
49 | .Fn CRYPTO_set_ex_data | 50 | .Fn CRYPTO_set_ex_data |
50 | call. | 51 | call. |