asp加密解密函数decrypt asp加密解密函数decrypt
人气:0想了解asp加密解密函数decrypt的相关内容吗,在本文为您仔细讲解asp加密解密函数decrypt的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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%>
加载全部内容