Crypt-Memfrob
view release on metacpan or search on metacpan
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw();
@EXPORT_OK = qw( memfrob );
$VERSION = '1.00';
sub memfrob($) {
return(join("", map { chr((ord($_) ^ 42) + 0) } (split(//, shift))));
}
1;
__END__
=head1 NAME
Crypt::Memfrob - memfrob implementation in pure Perl
( run in 2.556 seconds using v1.01-cache-2.11-cpan-65fba6d93b7 )