嗨我正在使用flex和JSP开发我的应用程序,所以当我通过带有请求对象的HTTP Service Post方法传递值时,这些值正在由测试团队进行跟踪和修改,因此我计划在flex中加密值并在jsp中解密它.所以有任何算法,如SHA或MD5更安全的算法,所以请发送任何代码或相关链接,这对我非常有用.我喜欢用
httpService = new HTTPService;
httpService.request = new Object;
httpService.request.task = "doInvite";
httpService.request.email = emailInput.text;
httpService.request.firstName = firstNameInput.text;
httpService.request.lastName = lastNameInput.text;
httpService.send();
Run Code Online (Sandbox Code Playgroud)
那么有没有其他方法可以提供更多安全,请在此帮助我,在此先感谢.