1EVP_SEED_CBC(3ossl)                 OpenSSL                EVP_SEED_CBC(3ossl)
2
3
4

NAME

6       EVP_seed_cbc, EVP_seed_cfb, EVP_seed_cfb128, EVP_seed_ecb, EVP_seed_ofb
7       - EVP SEED cipher
8

SYNOPSIS

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

DESCRIPTION

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

NOTES

30       Developers should be aware of the negative performance implications of
31       calling these functions multiple times and should consider using
32       EVP_CIPHER_fetch(3) instead.  See "Performance" in crypto(7) for
33       further information.
34

RETURN VALUES

36       These functions return an EVP_CIPHER structure that contains the
37       implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
38       details of the EVP_CIPHER structure.
39

SEE ALSO

41       evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
42
44       Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
45
46       Licensed under the Apache License 2.0 (the "License").  You may not use
47       this file except in compliance with the License.  You can obtain a copy
48       in the file LICENSE in the source distribution or at
49       <https://www.openssl.org/source/license.html>.
50
51
52
533.1.1                             2023-08-31               EVP_SEED_CBC(3ossl)
Impressum