源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

asp加密解密函数decrypt

  • 时间:2021-05-14 16:32 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:asp加密解密函数decrypt
加密与解密函数 <%function decrypt(dcode)  dim texts dim i for i=1 to len(dcode) texts=texts & chr(asc(mid(dcode,i,2))-i) next decrypt=texts end function function encrypt(ecode) Dim texts dim i for i=1 to len(ecode) texts=texts & chr(asc(mid(ecode,i,2))+i) next encrypt = texts end function %> <%=decrypt(123123)%> <a href="11111.asp?id=<%=decrypt("sdfasdfs")%>">111111111</a> <%abc=encrypt(request("id"))%><%=abc%>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部