xref: /freebsd/crypto/openssl/doc/man3/EVP_cast5_cbc.pod (revision e71b70530d95c4f34d8bdbd78d1242df1ba4a945)
1*e71b7053SJung-uk Kim=pod
2*e71b7053SJung-uk Kim
3*e71b7053SJung-uk Kim=head1 NAME
4*e71b7053SJung-uk Kim
5*e71b7053SJung-uk KimEVP_cast5_cbc,
6*e71b7053SJung-uk KimEVP_cast5_cfb,
7*e71b7053SJung-uk KimEVP_cast5_ecb,
8*e71b7053SJung-uk KimEVP_cast5_ofb
9*e71b7053SJung-uk Kim- EVP CAST cipher
10*e71b7053SJung-uk Kim
11*e71b7053SJung-uk Kim=head1 SYNOPSIS
12*e71b7053SJung-uk Kim
13*e71b7053SJung-uk Kim #include <openssl/evp.h>
14*e71b7053SJung-uk Kim
15*e71b7053SJung-uk Kim const EVP_CIPHER *EVP_cast5_cbc(void)
16*e71b7053SJung-uk Kim const EVP_CIPHER *EVP_cast5_cfb(void)
17*e71b7053SJung-uk Kim const EVP_CIPHER *EVP_cast5_ecb(void)
18*e71b7053SJung-uk Kim const EVP_CIPHER *EVP_cast5_ofb(void)
19*e71b7053SJung-uk Kim
20*e71b7053SJung-uk Kim=head1 DESCRIPTION
21*e71b7053SJung-uk Kim
22*e71b7053SJung-uk KimThe CAST encryption algorithm for EVP.
23*e71b7053SJung-uk Kim
24*e71b7053SJung-uk KimThis is a variable key length cipher.
25*e71b7053SJung-uk Kim
26*e71b7053SJung-uk Kim=over 4
27*e71b7053SJung-uk Kim
28*e71b7053SJung-uk Kim=item EVP_cast5_cbc(),
29*e71b7053SJung-uk KimEVP_cast5_ecb(),
30*e71b7053SJung-uk KimEVP_cast5_cfb(),
31*e71b7053SJung-uk KimEVP_cast5_ofb()
32*e71b7053SJung-uk Kim
33*e71b7053SJung-uk KimCAST encryption algorithm in CBC, ECB, CFB and OFB modes respectively.
34*e71b7053SJung-uk Kim
35*e71b7053SJung-uk Kim=back
36*e71b7053SJung-uk Kim
37*e71b7053SJung-uk Kim=head1 RETURN VALUES
38*e71b7053SJung-uk Kim
39*e71b7053SJung-uk KimThese functions return an B<EVP_CIPHER> structure that contains the
40*e71b7053SJung-uk Kimimplementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
41*e71b7053SJung-uk Kimdetails of the B<EVP_CIPHER> structure.
42*e71b7053SJung-uk Kim
43*e71b7053SJung-uk Kim=head1 SEE ALSO
44*e71b7053SJung-uk Kim
45*e71b7053SJung-uk KimL<evp(7)>,
46*e71b7053SJung-uk KimL<EVP_EncryptInit(3)>,
47*e71b7053SJung-uk KimL<EVP_CIPHER_meth_new(3)>
48*e71b7053SJung-uk Kim
49*e71b7053SJung-uk Kim=head1 COPYRIGHT
50*e71b7053SJung-uk Kim
51*e71b7053SJung-uk KimCopyright 2017 The OpenSSL Project Authors. All Rights Reserved.
52*e71b7053SJung-uk Kim
53*e71b7053SJung-uk KimLicensed under the OpenSSL license (the "License").  You may not use
54*e71b7053SJung-uk Kimthis file except in compliance with the License.  You can obtain a copy
55*e71b7053SJung-uk Kimin the file LICENSE in the source distribution or at
56*e71b7053SJung-uk KimL<https://www.openssl.org/source/license.html>.
57*e71b7053SJung-uk Kim
58*e71b7053SJung-uk Kim=cut
59*e71b7053SJung-uk Kim
60