NAME

IO::Stream::Crypt::RC4 - Crypt::RC4 plugin for IO::Stream

VERSION

This document describes IO::Stream::Crypt::RC4 version v2.0.1

SYNOPSIS

    use IO::Stream;
    use IO::Stream::Crypt::RC4;

    IO::Stream->new({
        ...
        plugin => [
            ...
            rc4     => IO::Stream::Crypt::RC4->new($passphrase),
            ...
        ],
    });

DESCRIPTION

This module is plugin for IO::Stream which allow you to encrypt all data read/written by this stream using RC4.

INTERFACE

new

    $plugin = IO::Stream::Crypt::RC4->new( $passphrase );

Create and return new IO::Stream plugin object.

DIAGNOSTICS

usage: IO::Stream::Crypt::RC4->new("passphrase")

You probably called new() without $passphrase parameter.

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/powerman/perl-IO-Stream-Crypt-RC4/issues. You will be notified automatically of any progress on your issue.

Source Code

This is open source software. The code repository is available for public review and contribution under the terms of the license. Feel free to fork the repository and submit pull requests.

https://github.com/powerman/perl-IO-Stream-Crypt-RC4

    git clone https://github.com/powerman/perl-IO-Stream-Crypt-RC4.git

Resources

AUTHOR

Alex Efros <powerman@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2008- by Alex Efros <powerman@cpan.org>.

This is free software, licensed under:

  The MIT (X11) License