浏览代码

update readame

sanex3339 9 年之前
父节点
当前提交
30e705a293
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      readme.md

+ 11 - 0
readme.md

@@ -94,6 +94,8 @@ Disable `console.log`, `console.info`, `console.error` and `console.warn` messag
 ####encodeUnicodeArray
 ####encodeUnicodeArray
 Type: `boolean` Default: `false`
 Type: `boolean` Default: `false`
 
 
+#####`unicodeArray` option must be be enabled
+
 This option can slightly slowdown your code speed.
 This option can slightly slowdown your code speed.
 
 
 All strings in unicode array becomes encoded in Base64.
 All strings in unicode array becomes encoded in Base64.
@@ -102,6 +104,8 @@ To decode strings, special function will inserted on page under `unicodeArray` n
 ####rotateUnicodeArray
 ####rotateUnicodeArray
 Type: `boolean` Default: `true`
 Type: `boolean` Default: `true`
 
 
+#####`unicodeArray` option must be be enabled
+
 For more hard understanding of code, during each obfuscation all literal values are stored in array as Unicode codes sequence.
 For more hard understanding of code, during each obfuscation all literal values are stored in array as Unicode codes sequence.
 This options will rotate all values inside array on a random value during obfuscation of code, and insert inside source code helper function
 This options will rotate all values inside array on a random value during obfuscation of code, and insert inside source code helper function
 which will rotate array values back to their original indexes.
 which will rotate array values back to their original indexes.
@@ -110,9 +114,16 @@ This option affected only on visual code organisation, because we can easily get
 
 
 Not recommended for small source code, because helper function will attract attention.
 Not recommended for small source code, because helper function will attract attention.
 
 
+####unicodeArray
+Type: `boolean` Default: `true`
+
+Put all literal strings into array and replace every literal string by array call.
+
 ####wrapUnicodeArrayCalls
 ####wrapUnicodeArrayCalls
 Type: `boolean` Default: `true`
 Type: `boolean` Default: `true`
 
 
+#####`unicodeArray` option must be be enabled
+
 Instead using direct calls to `unicodeArray` items `var t = _0x43a123[0x0]`, 
 Instead using direct calls to `unicodeArray` items `var t = _0x43a123[0x0]`, 
 when index `0x0` can be easy reverted to `0` with few js beautifiers, this option wrap all calls to special function instead.
 when index `0x0` can be easy reverted to `0` with few js beautifiers, this option wrap all calls to special function instead.