It sounds like you're trying to implement a
one-time pad. Let me demonstrate with a couple of one-liners:
thulben@bravo:~/perl
125> perl -le 'print "A" ^ "C"' | perl -nle 'print $_^"C"'
A
thulben@bravo:~/perl
126> perl -le 'print "A" ^ "C"' | perl -nle 'print $_^"A"'
C
thulben@bravo:~/perl
127>
Basically, (X xor Y) xor X = Y for all X,Y. And, because the xor operation is equivalent to addition modulo 2 (or, as the algebraist might say "addition in the finite field with two elements"), this works. A canned solution? Here's a quicky:
use warnings;
use strict;
my $cipher = shift;
my $key = shift;
open( my $cipher_fh, $cipher ) or die $!;
open( my $key_fh, $key ) or die $!;
my $buffer_length = 4_096;
while ( sysread( $cipher_fh, my $cipher_text, $buffer_length, )
&& sysread( $key_fh, my $key_text, $buffer_length, ) ) {
print $cipher_text ^ $key_text;
}
I don't do a lot of error checking here, so there is room to improve.
p.s. In case it wasn't obvious, you'll need to redirect the output from the script that I provided above: it prints to standard out
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.