http://www.perlmonks.org?node_id=1018781


in reply to Re: Simple Crypt::CBC Sample?
in thread Simple Crypt::CBC Sample?

Interesting, your code generates the error as well. At least I know I am not crazy, just need to figure out where the error is coming from. I am running perl 5.14.2.1402 on Windowz, are you running on Unix? Couldn't load Crypt::1: Can't locate Crypt/1.pm in @INC

Replies are listed 'Best First'.
Re^3: Simple Crypt::CBC Sample?
by toolic (Bishop) on Feb 14, 2013 at 20:38 UTC
    A look at the source code shows it may be doing a require:
    unless (ref $cipher) { # munge the class name if no object passed $cipher = $cipher=~/^Crypt::/ ? $cipher : "Crypt::$cipher"; $cipher->can('encrypt') or eval "require $cipher; 1" or croak "C +ouldn't load $cipher: $@"; # some crypt modules use the class Crypt::, and others don't $cipher =~ s/^Crypt::// unless $cipher->can('keysize'); }
Re^3: Simple Crypt::CBC Sample?
by toolic (Bishop) on Feb 14, 2013 at 20:30 UTC
    Yes, I'm on Unix, 2 variants:
    This is perl 5, version 12, subversion 2 (v5.12.2) built for x86_64-li +nux This is perl 5, version 14, subversion 2 (v5.14.2) built for x86_64-li +nux-thread-multi