Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: Simple Crypt::CBC Sample?

by boat73 (Scribe)
on Feb 14, 2013 at 20:19 UTC ( [id://1018781]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1018781]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-25 10:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found