1EVP_SEED_CBC(3) OpenSSL EVP_SEED_CBC(3)
2
3
4
6 EVP_seed_cbc, EVP_seed_cfb, EVP_seed_cfb128, EVP_seed_ecb, EVP_seed_ofb
7 - EVP SEED cipher
8
10 #include <openssl/evp.h>
11
12 const EVP_CIPHER *EVP_seed_cbc(void)
13 const EVP_CIPHER *EVP_seed_cfb(void)
14 const EVP_CIPHER *EVP_seed_cfb128(void)
15 const EVP_CIPHER *EVP_seed_ecb(void)
16 const EVP_CIPHER *EVP_seed_ofb(void)
17
19 The SEED encryption algorithm for EVP.
20
21 All modes below use a key length of 128 bits and acts on blocks of
22 128-bits.
23
24 EVP_seed_cbc(), EVP_seed_cfb(), EVP_seed_cfb128(), EVP_seed_ecb(),
25 EVP_seed_ofb()
26 The SEED encryption algorithm in CBC, CFB, ECB and OFB modes
27 respectively.
28
30 These functions return an EVP_CIPHER structure that contains the
31 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
32 details of the EVP_CIPHER structure.
33
35 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
36
38 Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
39
40 Licensed under the OpenSSL license (the "License"). You may not use
41 this file except in compliance with the License. You can obtain a copy
42 in the file LICENSE in the source distribution or at
43 <https://www.openssl.org/source/license.html>.
44
45
46
471.1.1d 2019-10-03 EVP_SEED_CBC(3)