summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/CRYPTO_set_ex_data.3
diff options
context:
space:
mode:
authorjmc <>2016-11-10 14:34:18 +0000
committerjmc <>2016-11-10 14:34:18 +0000
commitf09d61b594eba5f8f4ebf834ec2f18203636bcf5 (patch)
tree8e5a7bb432fb01e6ee508c5a7327eb41f4a0c92a /src/lib/libcrypto/man/CRYPTO_set_ex_data.3
parente19a4e15d73261c4eaf9f544789343e0ae570455 (diff)
downloadopenbsd-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.313
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 ,
34and 34and
35.Fn dup_func 35.Fn dup_func
36callbacks: as passed to 36callbacks, as passed to
37.Xr RSA_get_ex_new_index 3 37.Xr RSA_get_ex_new_index 3 ,
38for example. 38for example.
39.Pp 39.Pp
40.Fn CRYPTO_set_ex_data 40.Fn CRYPTO_set_ex_data
41is used to set application specific data, the data is supplied in the 41is used to set application specific data.
42The data is supplied in the
42.Fa arg 43.Fa arg
43parameter and its precise meaning is up to the application. 44parameter 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
46is used to retrieve application specific data. 47is used to retrieve application specific data.
47The data is returned to the application, this will be the same value as 48The data is returned to the application; this will be the same value as
48supplied to a previous 49supplied to a previous
49.Fn CRYPTO_set_ex_data 50.Fn CRYPTO_set_ex_data
50call. 51call.