正在阅读:用asp写个简单的加密和解密的类用asp写个简单的加密和解密的类

2004-12-09 10:11 出处:CSDN 作者:pxjianke 责任编辑:linjixiong


  '******************************begin
  for iCount=1 to lenString step 4
  tempString = Mid(paramString, iCount, 4)
  tempByteOne = InStr(sBASE_64_CHARACTERS, Mid(tempString, 1, 1)) - 1
  tempByteTwo = InStr(sBASE_64_CHARACTERS, Mid(tempString, 2, 1)) - 1
  tempByteThree = InStr(sBASE_64_CHARACTERS, Mid(tempString, 3, 1)) - 1
  tempByteFour = InStr(sBASE_64_CHARACTERS, Mid(tempString, 4, 1)) - 1
  tempByteOne = Chr(((tempByteTwo And 48) \ 16) Or (tempByteOne * 4) And &HFF) tempByteTwo = "" & Chr(((tempByteThree And 60) \ 4) Or (tempByteTwo * 16) And &HFF)
  tempByteThree = Chr((((tempByteThree And 3) * 64) And &HFF) Or (tempByteFour And 63))
  tempString=tempByteOne & tempByteTwo & tempByteThree
  returnValue=returnValue & tempString
  next
  '******************************end

  '处理最后剩余的几个字符
  if mod4String > 0 then
  tempString=left(right(paramString,4),mod4String)
  returnValue = returnValue & tempString
  end if
  Decode=returnValue
  end if
  end if
  end function
  '********************************************
  'end将Base64编码字符串转换成Ansi编码的字符串
  '********************************************

  end class


察看评论详细内容 我要发表评论
作者笔名 简短内容 发表时间
:
键盘也能翻页,试试“← →”键

关注我们

最新资讯离线随时看 聊天吐槽赢奖品