Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi, I have a brand new encryption/decryption program and I'm trying to improve its execution speed. I have a lot of big files (5Mb) to process and I tought I'd use File::Slurp in order to put everything in main memory. Here are the relevant snipets:
(...) use File::Slurp; use Crypt::CBC; #underlying cipher is Crypt::Twofish_PP (...) my $infilename = shift; my $outfilename = shift; my $cipher = Crypt::CBC->new($self->{SYMMKEY}, 'Twofish_PP'); $cipher->start('decrypting'); my $ref_file_str = read_file($infilename, scalar_ref => 1); my $enc_file_str = $cipher->crypt($$ref_file_str); $enc_file_str .= $cipher->finish; write_file($outfilename, \$enc_file_str); (...)
The end result is a file partially decrypted (a very small portion). If I try to put these lines in a one-liner, I only get the decrypted portion.

This program is executed with ActiveState Perl. Is it possible that a Windows "feature" is preventing this from working properly? Am I asking too much from the CBC/Twofish libraries? Or am I just plain wrong in assuming that this is at all feasible?


In reply to File::Slurp and encryption by Solostian

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-25 17:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found