]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/EVP_seed_cbc.pod
Copyright year updates
[thirdparty/openssl.git] / doc / man3 / EVP_seed_cbc.pod
CommitLineData
f19a5ff9
RT
1=pod
2
3=head1 NAME
4
8fa4d95e
RT
5EVP_seed_cbc,
6EVP_seed_cfb,
ffd89124 7EVP_seed_cfb128,
8fa4d95e
RT
8EVP_seed_ecb,
9EVP_seed_ofb
10- EVP SEED cipher
f19a5ff9
RT
11
12=head1 SYNOPSIS
13
f19a5ff9
RT
14 #include <openssl/evp.h>
15
f64f17c3
SL
16 const EVP_CIPHER *EVP_seed_cbc(void);
17 const EVP_CIPHER *EVP_seed_cfb(void);
18 const EVP_CIPHER *EVP_seed_cfb128(void);
19 const EVP_CIPHER *EVP_seed_ecb(void);
20 const EVP_CIPHER *EVP_seed_ofb(void);
f19a5ff9
RT
21
22=head1 DESCRIPTION
23
8fa4d95e 24The SEED encryption algorithm for EVP.
f19a5ff9 25
8fa4d95e 26All modes below use a key length of 128 bits and acts on blocks of 128-bits.
f19a5ff9
RT
27
28=over 4
29
8fa4d95e
RT
30=item EVP_seed_cbc(),
31EVP_seed_cfb(),
ffd89124 32EVP_seed_cfb128(),
8fa4d95e
RT
33EVP_seed_ecb(),
34EVP_seed_ofb()
f19a5ff9 35
8fa4d95e 36The SEED encryption algorithm in CBC, CFB, ECB and OFB modes respectively.
f19a5ff9
RT
37
38=back
39
e798248c 40=head1 NOTES
41
42Developers should be aware of the negative performance implications of
43calling these functions multiple times and should consider using
44L<EVP_CIPHER_fetch(3)> instead.
45See L<crypto(7)/Performance> for further information.
46
f19a5ff9
RT
47=head1 RETURN VALUES
48
8fa4d95e 49These functions return an B<EVP_CIPHER> structure that contains the
f19a5ff9
RT
50implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
51details of the B<EVP_CIPHER> structure.
52
53=head1 SEE ALSO
54
55L<evp(7)>,
56L<EVP_EncryptInit(3)>,
57L<EVP_CIPHER_meth_new(3)>
58
59=head1 COPYRIGHT
60
da1c088f 61Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
f19a5ff9 62
4746f25a 63Licensed under the Apache License 2.0 (the "License"). You may not use
f19a5ff9
RT
64this file except in compliance with the License. You can obtain a copy
65in the file LICENSE in the source distribution or at
66L<https://www.openssl.org/source/license.html>.
67
68=cut