xorCodeForJJ static method

String xorCodeForJJ(
  1. String res
)

异或加密(JJ异或)

Implementation

static String xorCodeForJJ(String res) {
  return xorCode(res, Config.appXorCode);
}