Rebol Programming/decloak
USAGE:
editDECLOAK data key /with
DESCRIPTION:
editDescrambles the string scrambled by encloak.
DECLOAK is a native value.
ARGUMENTS
edit- data -- String to descramble (modified) (Type: any-string)
- key -- Key to use (Type: any-string)
REFINEMENTS
edit- /with -- Use key as-is (for speed, no hashing)
SOURCE CODE
editdecloak: native[ "Descrambles the string scrambled by encloak." data [any-string!] "String to descramble (modified)" key [any-string!] "Key to use" /with "Use key as-is (for speed, no hashing)" ]