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