首页 > TAG信息列表 > encryptString

Java通过异或运算实现字符串解密

public class MyStringUtils { // public static String encryptString(String target,Integer factor){ // byte[] bytes = target.getBytes(); // for (int i = 0; i < bytes.length; i++) { // bytes[i] ^= factor; // } // //