diff options
author | Antoine Salon <asalon@vmware.com> | 2018-10-01 23:11:57 +0200 |
---|---|---|
committer | Nicola Tuveri <nic.tuv@gmail.com> | 2018-10-17 12:22:14 +0200 |
commit | ffd89124bdfc9e69349492c3f15383bb35520a11 (patch) | |
tree | 5fc08f18ec539eef635d2eb4910b31d6d560efbd /doc/man3/EVP_cast5_cbc.pod | |
parent | Fix: 'openssl ca' command crashes when used with 'rand_serial' option (diff) | |
download | openssl-ffd89124bdfc9e69349492c3f15383bb35520a11.tar.xz openssl-ffd89124bdfc9e69349492c3f15383bb35520a11.zip |
EVP module documentation pass
Replace ECDH_KDF_X9_62() with internal ecdh_KDF_X9_63()
Signed-off-by: Antoine Salon <asalon@vmware.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/7345)
Diffstat (limited to 'doc/man3/EVP_cast5_cbc.pod')
-rw-r--r-- | doc/man3/EVP_cast5_cbc.pod | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/man3/EVP_cast5_cbc.pod b/doc/man3/EVP_cast5_cbc.pod index 01c3841469..95c9b8da7b 100644 --- a/doc/man3/EVP_cast5_cbc.pod +++ b/doc/man3/EVP_cast5_cbc.pod @@ -4,6 +4,7 @@ EVP_cast5_cbc, EVP_cast5_cfb, +EVP_cast5_cfb64, EVP_cast5_ecb, EVP_cast5_ofb - EVP CAST cipher @@ -14,6 +15,7 @@ EVP_cast5_ofb const EVP_CIPHER *EVP_cast5_cbc(void) const EVP_CIPHER *EVP_cast5_cfb(void) + const EVP_CIPHER *EVP_cast5_cfb64(void) const EVP_CIPHER *EVP_cast5_ecb(void) const EVP_CIPHER *EVP_cast5_ofb(void) @@ -28,6 +30,7 @@ This is a variable key length cipher. =item EVP_cast5_cbc(), EVP_cast5_ecb(), EVP_cast5_cfb(), +EVP_cast5_cfb64(), EVP_cast5_ofb() CAST encryption algorithm in CBC, ECB, CFB and OFB modes respectively. |