如何将html中form表单数字签名以保证其安全性? 20
html中有一个form表单,为防止中间人攻击,所以我想将提交的form表单中的数据签名(数字签名)。不知如何实现?(就像邮件签名一样)谢谢1楼的,但是要求我们只用数字签...
html中有一个form表单,为防止中间人攻击,所以我想将提交的form表单中的数据签名(数字签名)。不知如何实现?(就像邮件签名一样)
谢谢1楼的,但是要求我们只用数字签名form表单 展开
谢谢1楼的,但是要求我们只用数字签名form表单 展开
展开全部
可以用struts中的信牌。DEMO: DocumentTypeDataBean documentTypeDataBean = ctrl.setDataBean( documentTypeForm, "insert");
String oldkey = documentTypeForm.getType_task_id().toString();
String result = ctrl.copeAddDocumentType(documentTypeDataBean,oldkey);//增加操作
List documentTypeList = ctrl.getAllDocumentType(request, null);
request.setAttribute("documentTypeList", documentTypeList);
request.setAttribute("documentTypeForm", null);
this.saveToken(request);//保存信牌
return mapping.findForward("list.documenttype");
也可以不用, 原理是一样的。传个唯一的值 , 在后台中作判断。
String oldkey = documentTypeForm.getType_task_id().toString();
String result = ctrl.copeAddDocumentType(documentTypeDataBean,oldkey);//增加操作
List documentTypeList = ctrl.getAllDocumentType(request, null);
request.setAttribute("documentTypeList", documentTypeList);
request.setAttribute("documentTypeForm", null);
this.saveToken(request);//保存信牌
return mapping.findForward("list.documenttype");
也可以不用, 原理是一样的。传个唯一的值 , 在后台中作判断。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询