summaryrefslogtreecommitdiffstats
path: root/doc/man3/SSL_CTX_set_ct_validation_callback.pod
diff options
context:
space:
mode:
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2020-01-26 22:18:23 +0100
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2020-02-07 11:38:02 +0100
commit30a9d5d1a72149c4eb2b8e5aa83f509344c80232 (patch)
treec8ae072771a45fa23ad49b0cc0a3ffe740623392 /doc/man3/SSL_CTX_set_ct_validation_callback.pod
parentb03de7a9207645c72e22627b10709f15eed211bf (diff)
RAND_DRBG: add a callback data for entropy and nonce callbacks
The callback data allows passing context specific data from the application of the DRBG to to the entropy callbacks. This a rather specialized feature which is useful for implementing known answer tests (KATs) or deterministic signatures (RFC6979), which require passing a specified entropy and nonce for instantiating the DRBG. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/10950)
Diffstat (limited to 'doc/man3/SSL_CTX_set_ct_validation_callback.pod')
-rw-r--r--doc/man3/SSL_CTX_set_ct_validation_callback.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/SSL_CTX_set_ct_validation_callback.pod b/doc/man3/SSL_CTX_set_ct_validation_callback.pod
index c0a635b9aa..6732ee1135 100644
--- a/doc/man3/SSL_CTX_set_ct_validation_callback.pod
+++ b/doc/man3/SSL_CTX_set_ct_validation_callback.pod
@@ -69,7 +69,7 @@ sufficient to allow the connection to continue.
The TLS handshake is aborted if the verification mode is not B<SSL_VERIFY_NONE>
and the callback returns a non-positive result.
-An arbitrary callback context argument, B<arg>, can be passed in when setting
+An arbitrary callback data argument, B<arg>, can be passed in when setting
the callback.
This will be passed to the callback whenever it is invoked.
Ownership of this context remains with the caller.