|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
帮助用户快速实现各种应用服务,ASP商有整合各方面资源的能力,可在短期内为用户提供所需的解决方案。例如,典型的ERP安装,如果要在客户端安装的话需要半年到二年的时间,但是美国的一些ASP商如USI和CORIO能在90—120天内提供ERP应用方案。加密|解密 用asp写个复杂的加密息争密的类,在这个类中复杂的完成了一个加密息争密。目标是和人人分享一下。这个类的破解十分复杂。看看我的正文就晓得是怎样回事了。下次编写一个java的加密息争密的类。
classBase64Class
remConst
dimsBASE_64_CHARACTERS转化码
dimlenString盘算字符串的长度
dimiCount计数器
dimreturnValue前往值
dimtempChar缓存字符
dimtempString缓存字符串
dimparamString参数字符串
dimtemHex缓存缓存十六进制
dimtempLow缓存低位
dimtempHigh缓存高位
dimmod3String
dimmod4String
dimtempBinary
dimtempByteOne
dimtempByteTwo
dimtempByteThree
dimtempByteFour
dimtempSaveBitsOne
dimtempSaveBitsTwo
********************************************
begin初始化类
********************************************
privatesubClass_Initialize()
sBASE_64_CHARACTERS="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"endsub
********************************************
end初始化类
******************************************** ********************************************
begin烧毁类
********************************************
PrivateSubClass_Terminate()
sBASE_64_CHARACTERS=""endsub
********************************************
end烧毁类
********************************************
********************************************
begin将Ansi编码的字符串举行Base64编码
********************************************
publicfunctionEncode(paramString)
tempString=""
returnValue=""
lenString=len(paramString)
iflenString<1then
Encode=returnValue
else
mod3String=lenStringmod3
补足位数是为了便于盘算
ifmod3String>0then
lenString=lenString+3-mod3String
lenString=lenString-3
endif
*************************begin
foriCount=1tolenStringstep3
tempBinary=Mid(paramString,iCount,3)
response.writetempBinary
tempByteOne=Asc(Mid(tempBinary,1,1)):tempSaveBitsOne=tempByteOneAnd3
tempByteTwo=Asc(Mid(tempBinary,2,1)):tempSaveBitsTwo=tempByteTwoAnd15
tempChar=Asc(Mid(tempBinary,3,1))
tempByteOne=Mid(sBASE_64_CHARACTERS,((tempByteOneAnd252)4)+1,1)
tempByteTwo=Mid(sBASE_64_CHARACTERS,(((tempByteTwoAnd240)16)Or(tempSaveBitsOne*16)And&HFF)+1,1)
tempByteThree=Mid(sBASE_64_CHARACTERS,(((tempCharAnd192)64)Or(tempSaveBitsTwo*4)And&HFF)+1,1)
tempByteFour=Mid(sBASE_64_CHARACTERS,(tempCharAnd63)+1,1)
tempString=tempByteOne&tempByteTwo&tempByteThree&tempByteFourreturnValue=returnValue&tempStringnext
*************************end
*************************begin处置最初残剩的几个字符
ifmod3String>0then
tempBinary=Mid(paramString,iCount,mod3String)
ifmod3String=1then
tempString=tempBinary&Chr(64)&Chr(64)&Chr(64)用@号补足位数
elsetempString=tempBinary&Chr(64)&Chr(64)用@号补足位数
endif
returnValue=returnValue&tempString
endif
*************************end处置最初残剩的几个字符
Encode=returnValueendifendfunction
********************************************
end将Ansi编码的字符串举行Base64编码
******************************************** ********************************************
end将Base64编码字符串转换成Ansi编码的字符串
********************************************
publicfunctionDecode(paramString)
tempString=""
returnValue=""
lenString=len(paramString)
iflenString<1then
Decode=returnValue
else
mod4String=lenStringmod4
ifmod4String>0then字符串长度应该是4的倍数
Decode=returnValue
elsebegin判别是否是@号
ifMid(paramString,lenString-1,1)="@"then
mod4String=2
endif
ifMid(paramString,lenString-2,1)="@"then
mod4String=1
endif
end判别是否是@号
ifmod4String>0then
lenString=lenString-4
endif
foriCount=1tolenStringstep4
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(((tempByteTwoAnd48)16)Or(tempByteOne*4)And&HFF)tempByteTwo=""&Chr(((tempByteThreeAnd60)4)Or(tempByteTwo*16)And&HFF)
tempByteThree=Chr((((tempByteThreeAnd3)*64)And&HFF)Or(tempByteFourAnd63))
tempString=tempByteOne&tempByteTwo&tempByteThree
returnValue=returnValue&tempString
next
******************************end 处置最初残剩的几个字符
ifmod4String>0then
tempString=left(right(paramString,4),mod4String)
returnValue=returnValue&tempString
endif
Decode=returnValue
endif
endif
endfunction
********************************************
end将Base64编码字符串转换成Ansi编码的字符串
********************************************
endclass
ASP由于使用了COM组件所以它会变的十分强大,但是这样的强大由于WindowsNT系统最初的设计问题而会引发大量的安全问题。只要在这样的组件或是操作中一不注意,哪么外部攻击就可以取得相当高的权限而导致网站瘫痪或者数据丢失; |
|