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