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