1EVP_CAST5_CBC(3) OpenSSL EVP_CAST5_CBC(3)
2
3
4
6 EVP_cast5_cbc, EVP_cast5_cfb, EVP_cast5_cfb64, EVP_cast5_ecb,
7 EVP_cast5_ofb - EVP CAST cipher
8
10 #include <openssl/evp.h>
11
12 const EVP_CIPHER *EVP_cast5_cbc(void)
13 const EVP_CIPHER *EVP_cast5_cfb(void)
14 const EVP_CIPHER *EVP_cast5_cfb64(void)
15 const EVP_CIPHER *EVP_cast5_ecb(void)
16 const EVP_CIPHER *EVP_cast5_ofb(void)
17
19 The CAST encryption algorithm for EVP.
20
21 This is a variable key length cipher.
22
23 EVP_cast5_cbc(), EVP_cast5_ecb(), EVP_cast5_cfb(), EVP_cast5_cfb64(),
24 EVP_cast5_ofb()
25 CAST encryption algorithm in CBC, ECB, CFB and OFB modes
26 respectively.
27
29 These functions return an EVP_CIPHER structure that contains the
30 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
31 details of the EVP_CIPHER structure.
32
34 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
35
37 Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
38
39 Licensed under the OpenSSL license (the "License"). You may not use
40 this file except in compliance with the License. You can obtain a copy
41 in the file LICENSE in the source distribution or at
42 <https://www.openssl.org/source/license.html>.
43
44
45
461.1.1l 2021-09-15 EVP_CAST5_CBC(3)