On 6/20/07, oryann9 <[EMAIL PROTECTED]> wrote:
snip
Also noticed I could use binary & and |

$ perl -le 'print "hello" & "XXXXX";'
[EMAIL PROTECTED]

$ perl -le 'print "hello" | "XXXXX";'
x}||⌂

but these were not decrypted.  Why not?

There is a reason I used xor (grin).  The other operators don't work
because they destroy information (and therefore are one way).  It is
the nature of their truth tables.

Here is and:

00111100 orig
01100110 key
00100100 result

00100100 result
01100110 key
00100100 new result same as old result

and here is or
00111100 orig
01100110 key
01111110 result

01111110 result
01100110 key
01111110 new result same as old result

Reply via email to