Blame doc/man3/EVP_rc4.pod

Packit c4476c
=pod
Packit c4476c
Packit c4476c
=head1 NAME
Packit c4476c
Packit c4476c
EVP_rc4,
Packit c4476c
EVP_rc4_40,
Packit c4476c
EVP_rc4_hmac_md5
Packit c4476c
- EVP RC4 stream cipher
Packit c4476c
Packit c4476c
=head1 SYNOPSIS
Packit c4476c
Packit c4476c
 #include <openssl/evp.h>
Packit c4476c
Packit c4476c
 const EVP_CIPHER *EVP_rc4(void)
Packit c4476c
 const EVP_CIPHER *EVP_rc4_40(void)
Packit c4476c
 const EVP_CIPHER *EVP_rc4_hmac_md5(void)
Packit c4476c
Packit c4476c
=head1 DESCRIPTION
Packit c4476c
Packit c4476c
The RC4 stream cipher for EVP.
Packit c4476c
Packit c4476c
=over 4
Packit c4476c
Packit c4476c
=item EVP_rc4()
Packit c4476c
Packit c4476c
RC4 stream cipher. This is a variable key length cipher with a default key
Packit c4476c
length of 128 bits.
Packit c4476c
Packit c4476c
=item EVP_rc4_40()
Packit c4476c
Packit c4476c
RC4 stream cipher with 40 bit key length.
Packit c4476c
Packit c4476c
WARNING: this function is obsolete. Its usage should be replaced with the
Packit c4476c
EVP_rc4() and the EVP_CIPHER_CTX_set_key_length() functions.
Packit c4476c
Packit c4476c
=item EVP_rc4_hmac_md5()
Packit c4476c
Packit c4476c
Authenticated encryption with the RC4 stream cipher with MD5 as HMAC.
Packit c4476c
Packit c4476c
WARNING: this is not intended for usage outside of TLS and requires calling of
Packit c4476c
some undocumented ctrl functions. These ciphers do not conform to the EVP AEAD
Packit c4476c
interface.
Packit c4476c
Packit c4476c
=back
Packit c4476c
Packit c4476c
=head1 RETURN VALUES
Packit c4476c
Packit c4476c
These functions return an B<EVP_CIPHER> structure that contains the
Packit c4476c
implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
Packit c4476c
details of the B<EVP_CIPHER> structure.
Packit c4476c
Packit c4476c
=head1 SEE ALSO
Packit c4476c
Packit c4476c
L<evp(7)>,
Packit c4476c
L<EVP_EncryptInit(3)>,
Packit c4476c
L<EVP_CIPHER_meth_new(3)>
Packit c4476c
Packit c4476c
=head1 COPYRIGHT
Packit c4476c
Packit c4476c
Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
Packit c4476c
Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
this file except in compliance with the License.  You can obtain a copy
Packit c4476c
in the file LICENSE in the source distribution or at
Packit c4476c
L<https://www.openssl.org/source/license.html>.
Packit c4476c
Packit c4476c
=cut
Packit c4476c