zoukankan      html  css  js  c++  java
  • ASP 简单的异或加密方法

    <%
    最简单的加密方法:XOR
    ----------------------

    g_CryptThis = "中国-China"
    strFullKeyLen = Len(g_CryptThis)

    strFullKey = KeyGen(strFullKeyLen)

    Response.Write "<p>原始字符串: " & g_CryptThis & "<p>"
    Response.Write "<p>密钥: " & strFullKey  & "<p>"
    Response.Write "<p>加密后: " & Server.URLEncode(EnCrypt(g_CryptThis)) & "<p>"
    Response.Write "<p>解密后: " & DeCrypt(EnCrypt(g_CryptThis)) & "<p>"

    异或加密
    Function EnCrypt(strCryptThis)
       Dim strChar, iKeyChar, iStringChar, i
       for i = 1 to Len(strCryptThis)
          iKeyChar = Asc(mid(strFullKey,i,1))
          iStringChar = Asc(mid(strCryptThis,i,1))
          iCryptChar = iKeyChar Xor iStringChar
          strEncrypted =  strEncrypted & Chr(iCryptChar)
       next
       EnCrypt = strEncrypted
    End Function

    异或解密
    Function DeCrypt(strEncrypted)
    Dim strChar, iKeyChar, iStringChar, i
       for i = 1 to Len(strEncrypted)
          iKeyChar = (Asc(mid(strFullKey,i,1)))
          iStringChar = Asc(mid(strEncrypted,i,1))
          iDeCryptChar = iKeyChar Xor iStringChar
          strDecrypted =  strDecrypted & Chr(iDeCryptChar)
       next
       DeCrypt = strDecrypted
    End Function

    产生指定长度的随机密钥
    Function KeyGen(strlength)
        Dim i,UB
        Dim Temp
        Dim Poss
        Poss = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
        Temp = ""

        UB = Len(Poss)
        For i = 1 To strlength
            Randomize
            Temp = Temp & Mid(Poss,Int((UB - 0 + 1) * Rnd + 1),1)
        Next
        KeyGen = Temp
    End Function
    %>
  • 相关阅读:
    查看电脑保存的wifi密码
    数据仓库
    nodejs 中国汉字模糊查询简单(很low)实现
    nodejs express 框架 上传文件
    async样例
    mongodb Map/reduce测试代码
    未释放资源的教训,开发MongoDB连接一定要关闭连接
    采集系统优化:大家接手过的最烂的项目,最坑爹的项目是哪个?
    Android的HttpClient调用,冲突的解决办法
    MongoDBcrud操作,采集部分代码
  • 原文地址:https://www.cnblogs.com/love2wllw/p/1730662.html
Copyright © 2011-2022 走看看