REBOL Programming/decloak

      USAGE:

      DECLOAK data key /with 
      

      DESCRIPTION:

      Descrambles the string scrambled by encloak.

      DECLOAK is a native value.

      ARGUMENTS

      • data -- String to descramble (modified) (Type: any-string)
      • key -- Key to use (Type: any-string)

      REFINEMENTS

      • /with -- Use key as-is (for speed, no hashing)

      SOURCE CODE

      decloak: 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)"
      ]
      
      {{BookCat}}
      
      Last modified on 27 October 2012, at 22:14