1. 首页
  2. 服务器

ASP字符串加密函数EncryptText()

<%
’ASP 字符串加密函数EncryptText()
’strEncryptionKey:加密key字符串,用以区别不同模块加密算法
’strTextToEncrypt:欲加密字符串
Function EncryptText(ByVal strEncryptionKey, ByVal strTextToEncrypt)
    Dim outer, inner, Key, strTemp
    For outer = 1 To Len(strEncryptionKey)
        key = Asc(Mid(strEncryptionKey, outer, 1))
        For inner = 1 To Len(strTextToEncrypt)
            strTemp = strTemp & Chr(Asc(Mid(strTextToEncrypt, inner, 1)) Xor key)
            key = (key + Len(strEncryptionKey)) Mod 256
        Next
        strTextToEncrypt = strTemp
        strTemp = ""
    Next
    EncryptText = strTextToEncrypt
End Function
%>

原创文章,作者:夜风博客,如若转载,请注明出处:https://www.homedt.net/18732.html