diff options
author | Pauli <ppzgs1@gmail.com> | 2021-03-03 02:32:39 +0100 |
---|---|---|
committer | Pauli <ppzgs1@gmail.com> | 2021-03-11 23:27:21 +0100 |
commit | f59612fed8def965c61cdb002fa20f61943f50a0 (patch) | |
tree | 6f840b627e3be1d714fb9f729f40fb9895d98db7 /doc/man7/provider-keyexch.pod | |
parent | doc: document the additional params argument to the various init() calls (diff) | |
download | openssl-f59612fed8def965c61cdb002fa20f61943f50a0.tar.xz openssl-f59612fed8def965c61cdb002fa20f61943f50a0.zip |
doc: note that get_params and set_params calls should return true if the param array is null
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/14383)
Diffstat (limited to 'doc/man7/provider-keyexch.pod')
-rw-r--r-- | doc/man7/provider-keyexch.pod | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/man7/provider-keyexch.pod b/doc/man7/provider-keyexch.pod index 577fc38510..0fc36c5da6 100644 --- a/doc/man7/provider-keyexch.pod +++ b/doc/man7/provider-keyexch.pod @@ -139,10 +139,12 @@ OSSL_FUNC_keyexch_set_ctx_params() sets key exchange parameters associated with given provider side key exchange context I<ctx> to I<params>, see L</Common Key Exchange parameters>. Any parameter settings are additional to any that were previously set. +Passing NULL for I<params> should return true. OSSL_FUNC_keyexch_get_ctx_params() gets key exchange parameters associated with the given provider side key exchange context I<ctx> into I<params>, see L</Common Key Exchange parameters>. +Passing NULL for I<params> should return true. OSSL_FUNC_keyexch_settable_ctx_params() yields a constant B<OSSL_PARAM> array that describes the settable parameters, i.e. parameters that can be used with |