DESUtil类 public class DESUtil { private static byte[] iv = {0x12, 0x34, 0x56, 0x78, (byte) 0x90, (byte) 0xAB, (byte) 0xCD, (byte) 0xEF}; //-----------------加密----------------- public static String encryptDES(String encryptString, String encryptKey) t…