Crypt::Stream::Rabbit(3pm) | User Contributed Perl Documentation | Crypt::Stream::Rabbit(3pm) |
Crypt::Stream::Rabbit - Stream cipher Rabbit
use Crypt::Stream::Rabbit; # encrypt $key = "1234567890123456"; $iv = "12345678"; $stream = Crypt::Stream::Rabbit->new($key, $iv); $ct = $stream->crypt("plain message"); # decrypt $key = "1234567890123456"; $iv = "12345678"; $stream = Crypt::Stream::Rabbit->new($key, $iv); $pt = $stream->crypt($ct);
Provides an interface to the Rabbit stream cipher.
$stream = Crypt::Stream::Rabbit->new($key, $iv); # $key .. keylen must be up to 16 bytes # $iv .. ivlen must be up to 8 bytes $stream = Crypt::Stream::Rabbit->new($key); #BEWARE: this is different from new($key, "")
$ciphertext = $stream->crypt($plaintext); #or $plaintext = $stream->crypt($ciphertext);
$random_key = $stream->keystream($length);
$stream->clone();
2022-10-19 | perl v5.36.0 |