``` AES aes = new AES(key, iv); String content = "hello world"; String encrypt = Base64Utils.encodeToString(aes.encrypt(content.getBytes())); System.out.println("encrypt:" + encrypt); ``` when load AES by local keys, then throws InvalidParameterSpecException