asp base64加解密函数代码

来源:asp之家 时间:2011-03-31 11:02:00 

代码如下:


<% 

sBASE_64_CHARACTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" 
sBASE_64_CHARACTERS = strUnicode2Ansi(sBASE_64_CHARACTERS) 

Function strUnicodeLen(asContents) 
'计算unicode字符串的Ansi编码的长度 
asContents1="a"&asContents 
len1=len(asContents1) 
k=0 
for i=1 to len1 
asc1=asc(mid(asContents1,i,1)) 
if asc1<0 then asc1=65536+asc1 
if asc1>255 then 
k=k+2 
else 
k=k+1 
end if 
next 
strUnicodeLen=k-1 
End Function 

Function strUnicode2Ansi(asContents) 
'将Unicode编码的字符串,转换成Ansi编码的字符串 
strUnicode2Ansi="" 
len1=len(asContents) 
for i=1 to len1 
varchar=mid(asContents,i,1) 
varasc=asc(varchar) 
if varasc<0 then varasc=varasc+65536 
if varasc>255 then 
varHex=Hex(varasc) 
varlow=left(varHex,2) 
varhigh=right(varHex,2) 
strUnicode2Ansi=strUnicode2Ansi & chrb("&H" & varlow ) & chrb("&H" & varhigh ) 
else 
strUnicode2Ansi=strUnicode2Ansi & chrb(varasc) 
end if 
next 
End function 

Function strAnsi2Unicode(asContents) 
'将Ansi编码的字符串,转换成Unicode编码的字符串 
strAnsi2Unicode = "" 
len1=lenb(asContents) 
if len1=0 then exit function 
for i=1 to len1 
varchar=midb(asContents,i,1) 
varasc=ascb(varchar) 
if varasc > 127 then 
strAnsi2Unicode = strAnsi2Unicode & chr(ascw(midb(asContents,i+1,1) & varchar)) 
i=i+1 
else 
strAnsi2Unicode = strAnsi2Unicode & chr(varasc) 
end if 
next 
End function 

Function Base64encode(asContents) 
'将Ansi编码的字符串进行Base64编码 
'asContents应当是ANSI编码的字符串(二进制的字符串也可以) 
Dim lnPosition 
Dim lsResult 
Dim Char1 
Dim Char2 
Dim Char3 
Dim Char4 
Dim Byte1 
Dim Byte2 
Dim Byte3 
Dim SaveBits1 
Dim SaveBits2 
Dim lsGroupBinary 
Dim lsGroup64 
Dim m4,len1,len2 

len1=Lenb(asContents) 
if len1<1 then 
Base64encode="" 
exit Function 
end if 

m3=Len1 Mod 3 
If M3 > 0 Then asContents = asContents & String(3-M3, chrb(0)) 
'补足位数是为了便于计算 

IF m3 > 0 THEN 
len1=len1+(3-m3) 
len2=len1-3 
else 
len2=len1 
end if 

lsResult = "" 

For lnPosition = 1 To len2 Step 3 
lsGroup64 = "" 
lsGroupBinary = Midb(asContents, lnPosition, 3) 

Byte1 = Ascb(Midb(lsGroupBinary, 1, 1)): SaveBits1 = Byte1 And 3 
Byte2 = Ascb(Midb(lsGroupBinary, 2, 1)): SaveBits2 = Byte2 And 15 
Byte3 = Ascb(Midb(lsGroupBinary, 3, 1)) 

Char1 = Midb(sBASE_64_CHARACTERS, ((Byte1 And 252) \ 4) + 1, 1) 
Char2 = Midb(sBASE_64_CHARACTERS, (((Byte2 And 240) \ 16) Or (SaveBits1 * 16) And &HFF) + 1, 1) 
Char3 = Midb(sBASE_64_CHARACTERS, (((Byte3 And 192) \ 64) Or (SaveBits2 * 4) And &HFF) + 1, 1) 
Char4 = Midb(sBASE_64_CHARACTERS, (Byte3 And 63) + 1, 1) 
lsGroup64 = Char1 & Char2 & Char3 & Char4 

lsResult = lsResult & lsGroup64 
Next 

'处理最后剩余的几个字符 
if M3 > 0 then 
lsGroup64 = "" 
lsGroupBinary = Midb(asContents, len2+1, 3) 

Byte1 = Ascb(Midb(lsGroupBinary, 1, 1)): SaveBits1 = Byte1 And 3 
Byte2 = Ascb(Midb(lsGroupBinary, 2, 1)): SaveBits2 = Byte2 And 15 
Byte3 = Ascb(Midb(lsGroupBinary, 3, 1)) 

Char1 = Midb(sBASE_64_CHARACTERS, ((Byte1 And 252) \ 4) + 1, 1) 
Char2 = Midb(sBASE_64_CHARACTERS, (((Byte2 And 240) \ 16) Or (SaveBits1 * 16) And &HFF) + 1, 1) 
Char3 = Midb(sBASE_64_CHARACTERS, (((Byte3 And 192) \ 64) Or (SaveBits2 * 4) And &HFF) + 1, 1) 

if M3=1 then 
lsGroup64 = Char1 & Char2 & ChrB(61) & ChrB(61) '用=号补足位数 
else 
lsGroup64 = Char1 & Char2 & Char3 & ChrB(61) '用=号补足位数 
end if 

lsResult = lsResult & lsGroup64 
end if 

Base64encode = lsResult 

End Function 


Function Base64decode(asContents) 
'将Base64编码字符串转换成Ansi编码的字符串 
'asContents应当也是ANSI编码的字符串(二进制的字符串也可以) 
Dim lsResult 
Dim lnPosition 
Dim lsGroup64, lsGroupBinary 
Dim Char1, Char2, Char3, Char4 
Dim Byte1, Byte2, Byte3 
Dim M4,len1,len2 

len1= Lenb(asContents) 
M4 = len1 Mod 4 

if len1 < 1 or M4 > 0 then 
'字符串长度应当是4的倍数 
Base64decode = "" 
exit Function 
end if 

'判断最后一位是不是 = 号 
'判断倒数第二位是不是 = 号 
'这里m4表示最后剩余的需要单独处理的字符个数 
if midb(asContents, len1, 1) = chrb(61) then m4=3 
if midb(asContents, len1-1, 1) = chrb(61) then m4=2 

if m4 = 0 then 
len2=len1 
else 
len2=len1-4 
end if 

For lnPosition = 1 To Len2 Step 4 
lsGroupBinary = "" 
lsGroup64 = Midb(asContents, lnPosition, 4) 
Char1 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 1, 1)) - 1 
Char2 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 2, 1)) - 1 
Char3 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 3, 1)) - 1 
Char4 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 4, 1)) - 1 
Byte1 = Chrb(((Char2 And 48) \ 16) Or (Char1 * 4) And &HFF) 
Byte2 = lsGroupBinary & Chrb(((Char3 And 60) \ 4) Or (Char2 * 16) And &HFF) 
Byte3 = Chrb((((Char3 And 3) * 64) And &HFF) Or (Char4 And 63)) 
lsGroupBinary = Byte1 & Byte2 & Byte3 

lsResult = lsResult & lsGroupBinary 
Next 

'处理最后剩余的几个字符 
if M4 > 0 then 
lsGroupBinary = "" 
lsGroup64 = Midb(asContents, len2+1, m4) & chrB(65) 'chr(65)=A,转换成值为0 
if M4=2 then '补足4位,是为了便于计算 
lsGroup64 = lsGroup64 & chrB(65) 
end if 
Char1 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 1, 1)) - 1 
Char2 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 2, 1)) - 1 
Char3 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 3, 1)) - 1 
Char4 = InStrb(sBASE_64_CHARACTERS, Midb(lsGroup64, 4, 1)) - 1 
Byte1 = Chrb(((Char2 And 48) \ 16) Or (Char1 * 4) And &HFF) 
Byte2 = lsGroupBinary & Chrb(((Char3 And 60) \ 4) Or (Char2 * 16) And &HFF) 
Byte3 = Chrb((((Char3 And 3) * 64) And &HFF) Or (Char4 And 63)) 

if M4=2 then 
lsGroupBinary = Byte1 
elseif M4=3 then 
lsGroupBinary = Byte1 & Byte2 
end if 

lsResult = lsResult & lsGroupBinary 
end if 

Base64decode = lsResult 

End Function 
%> 

标签:asp,base64,加解密
0
投稿

猜你喜欢

  • 通过Jython调用Python脚本的实现方法

    2022-07-08 23:21:42
  • Python中基本的日期时间处理的学习教程

    2023-08-25 08:16:19
  • 解决python matplotlib imshow无法显示的问题

    2023-07-19 23:59:25
  • Vue子组件监听父组件值的变化

    2023-07-02 16:56:00
  • MySQL学习第四天 Windows 64位系统下使用MySQL

    2024-01-24 02:35:46
  • Vue中使用vee-validate表单验证的方法

    2024-06-05 15:29:04
  • Python内置函数dir详解

    2023-05-29 13:38:10
  • Python检查和同步本地时间(北京时间)的实现方法

    2022-02-23 04:42:41
  • 在JavaScript中处理字符串之link()方法的使用

    2024-06-07 15:55:06
  • 使用OpenCV circle函数图像上画圆的示例代码

    2021-03-12 17:30:41
  • 设定php简写功能的方法

    2024-05-13 09:25:21
  • Python深度学习pytorch神经网络多层感知机简洁实现

    2021-08-20 17:37:43
  • 通过Python实现控制手机详解

    2021-04-21 12:10:37
  • Python数据结构之队列详解

    2023-11-17 14:04:34
  • python利用小波分析进行特征提取的实例

    2023-01-02 01:02:22
  • Django2.1.3 中间件使用详解

    2023-11-06 19:46:00
  • python PyTorch预训练示例

    2022-07-06 18:24:02
  • Pytorch上下采样函数--interpolate用法

    2023-04-09 20:58:29
  • 淘宝网获亚洲最佳在线客户体验大奖

    2009-03-31 12:55:00
  • 在ASP.NET 2.0中操作数据之十九:给编辑和新增界面增加验证控件

    2024-05-09 09:04:01
  • asp之家 网络编程 m.aspxhome.com