最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp加密解密程序
时间:2022-06-30 09:13:14 编辑:袖梨 来源:一聚教程网
class base64class
rem const
dim sbase_64_characters'转化码
dim lenstring '计算字符串的长度
dim icount '计数器
dim returnvalue '返回值
dim tempchar'缓存字符
dim temps教程tring'缓存字符串
dim paramstring '参数字符串
dim temhex'缓存缓存十六进制
dim templow'缓存低位
dim temphigh'缓存高位
dim mod3string'
dim mod4string'
dim tempbinary'
dim tempbyteone'
dim tempbytetwo'
dim tempbytethree'
dim tempbytefour'
dim tempsavebitsone'
dim tempsavebitstwo'
'********************************************
'begin初始化类
'********************************************
private sub class_initialize()
sbase_64_characters = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789+/" end sub
'********************************************
'end初始化类 '
********************************************
'********************************************
'begin销毁类
'********************************************
private sub class_terminate()
sbase_64_characters="" end sub
'********************************************
'end销毁类
'********************************************
'********************************************
'begin将ansi编码的字符串进行base64编码
'********************************************
public function encode(paramstring)
tempstring=""
returnvalue=""
lenstring=len(paramstring)
if lenstring<1 then
encode=returnvalue
else
mod3string=lenstring mod 3
'补足位数是为了便于计算
if mod3string>0 then
lenstring=lenstring+3-mod3string
lenstring=lenstring-3
end if
相关文章
- 《彩色点点战争》推图常用三大主c玩法详解 01-23
- 《燕云十六声》池鱼林木任务攻略 01-23
- 《大连地铁e出行》查看行程记录方法 01-23
- 《明日方舟》2025春节限定干员余角色介绍 01-23
- 《崩坏:星穹铁道》万敌光锥搭配攻略 01-23
- 《燕云十六声》一药千金任务攻略 01-23