NAME

Crypt::OpenSSL::RC4 - RC4 library based on OpenSSL

SYNOPSIS

    use Crypt::OpenSSL::RC4;
    # functional style
    my $encrypted = RC4($passphrase, $plaintext);
    my $decrypted = RC4($passphrase, $encrypted);

    # OO style
    my $cipher = Crypt::RC4->new($passphrase);
    my $encrypted = $cipher->RC4($plain_text);

DESCRIPTION

This module is wrapper class for OpenSSL. The interface is compatible with Crypt::RC4.

This module XS implementation of the RC4 algorithm, developed by RSA Security, Inc. Here is the description from Wikipedia website: http://en.wikipedia.org/wiki/RC4

In cryptography, RC4 (also known as ARC4 or ARCFOUR meaning Alleged RC4, see below) is the most widely-used software stream cipher and is used in popular protocols such as Secure Sockets Layer (SSL) (to protect Internet traffic) and WEP (to secure wireless networks). While remarkable for its simplicity and speed in software, RC4 is vulnerable to attacks when the beginning of the output keystream is not discarded, or a single keystream is used twice; some ways of using RC4 can lead to very insecure cryptosystems such as WEP.

AUTHOR

Tokuhiro Matsuno <tokuhirom.gmail>

SEE ALSO

Crypt::RC4, Crypt::RC4::XS

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.