in reply to Re^4: Fast parsing for cypher block chaining
in thread Fast parsing for cypher block chaining
If it done right, it should be faster than this buggy code you show here. I say buggy since you're assuming the input file is a multiple of 8 bytes.
Using IO::File is probably much slower than using read and write. Objects are slower than their non-object equivalent.
If you want to use sysread and syswrite, you can use them with the solution in Re: Fast parsing for cypher block chaining, which is what you should be using.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Fast parsing for cypher block chaining
by fluffyvoidwarrior (Monk) on Mar 01, 2006 at 17:20 UTC | |
by ikegami (Patriarch) on Mar 01, 2006 at 18:21 UTC |