跳转到内容

Rebol 编程/decloak

来自维基教科书,开放世界中的开放书籍
DECLOAK data key /with 

对由 encloak 加密的字符串进行解密。

DECLOAK 是一个原生值。

  • data -- 要解密的字符串(已修改)(类型:any-string)
  • key -- 要使用的密钥(类型:any-string)
  • /with -- 原样使用密钥(为了速度,不进行散列)

源代码

[编辑 | 编辑源代码]
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)"
]

华夏公益教科书