[REBOL] Re: Changes for REBOL/Core 2.5.5
From: carl:s:rebol at: 20-Feb-2003 23:16
Try them... they make your computer become invisible.
Actually... they are simple, high speed data "scramblers" (e.g. using
string-like xor methods). They were part of other builds, so we tossed them
into /Core because they do have value for users who want to hide passwords,
obscure data/code, but don't need full scale encryption methods, and don't
want to take the trouble to write something themselves.
Example usage:
key: checksum/secure ask "Enter the key phrase: "
str: read %data.txt
data: encloak compress str key
write/binary %data.bin data
At 07:19 AM 2/21/03 +0100, you wrote: