1EVP_BF_CBC(3ossl) OpenSSL EVP_BF_CBC(3ossl)
2
3
4
6 EVP_bf_cbc, EVP_bf_cfb, EVP_bf_cfb64, EVP_bf_ecb, EVP_bf_ofb - EVP
7 Blowfish cipher
8
10 #include <openssl/evp.h>
11
12 const EVP_CIPHER *EVP_bf_cbc(void);
13 const EVP_CIPHER *EVP_bf_cfb(void);
14 const EVP_CIPHER *EVP_bf_cfb64(void);
15 const EVP_CIPHER *EVP_bf_ecb(void);
16 const EVP_CIPHER *EVP_bf_ofb(void);
17
19 The Blowfish encryption algorithm for EVP.
20
21 This is a variable key length cipher.
22
23 EVP_bf_cbc(), EVP_bf_cfb(), EVP_bf_cfb64(), EVP_bf_ecb(), EVP_bf_ofb()
24 Blowfish encryption algorithm in CBC, CFB, ECB and OFB modes
25 respectively.
26
28 Developers should be aware of the negative performance implications of
29 calling these functions multiple times and should consider using
30 EVP_CIPHER_fetch(3) instead. See "Performance" in crypto(7) for
31 further information.
32
34 These functions return an EVP_CIPHER structure that contains the
35 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
36 details of the EVP_CIPHER structure.
37
39 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
40
42 Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
43
44 Licensed under the Apache License 2.0 (the "License"). You may not use
45 this file except in compliance with the License. You can obtain a copy
46 in the file LICENSE in the source distribution or at
47 <https://www.openssl.org/source/license.html>.
48
49
50
513.0.9 2023-07-27 EVP_BF_CBC(3ossl)