in reply to Re^3: Fast parsing for cypher block chaining
in thread Fast parsing for cypher block chaining
$infile = new IO::File; $outfile = new IO::File; $infile->open($input_filepath); $outfile->open(">$output_filepath"); for($chunk_counter = 0; $chunk_counter < $infile_num_chunks +1; + $chunk_counter = $chunk_counter + 1){ $infile->read($buffer, 8); $outfile->write($buffer,8); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Fast parsing for cypher block chaining
by ikegami (Patriarch) on Mar 01, 2006 at 15:18 UTC | |
by fluffyvoidwarrior (Monk) on Mar 01, 2006 at 17:20 UTC | |
by ikegami (Patriarch) on Mar 01, 2006 at 18:21 UTC | |
|
Re^5: Fast parsing for cypher block chaining
by Anonymous Monk on Mar 01, 2006 at 09:05 UTC | |
by fluffyvoidwarrior (Monk) on Mar 01, 2006 at 10:25 UTC |