summaryrefslogtreecommitdiff
path: root/doc/man3/EVP_PKEY_settable_params.pod
Commit message (Collapse)AuthorAgeFilesLines
* EVP: Modify the checks in EVP_PKEY_{set,get}_xxx_param() functionsRichard Levitte2021-02-051-1/+1
| | | | | | | | The checks of the type of EVP_PKEY were from before we had the macro evp_pkey_is_provided(). Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14056)
* EVP: Adapt the other EVP_PKEY_set_xxx_param() functionsRichard Levitte2021-02-051-3/+4
| | | | | | | | | | | | | They were calling evp_keymgmt_set_params() directly. Those calls are changed to go through EVP_PKEY_set_params(). We take the opportunity to constify these functions. They have to unconstify internally for the compiler to stop complaining when placing those pointers in an OSSL_PARAM element, but that's still better than forcing the callers to do that cast. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14056)
* Update copyright yearRichard Levitte2021-01-281-1/+1
| | | | | Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13999)
* Add functions to set values into an EVP_PKEYShane Lontis2021-01-261-0/+82
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13139)