国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > ASP > 正文

ASP BASE64加解密(親測(cè)可用)

2020-07-27 12:44:09
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

核心代碼:

<%  ' OPTION EXPLICIT   const BASE_64_MAP_INIT = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"   dim newline   dim Base64EncMap(63)   dim Base64DecMap(127)   '初始化函數(shù)   PUBLIC SUB initCodecs()     ' 初始化變量     newline = "<P>" & chr(13) & chr(10)     dim max, idx       max = len(BASE_64_MAP_INIT)     for idx = 0 to max - 1        Base64EncMap(idx) = mid(BASE_64_MAP_INIT, idx + 1, 1)     next     for idx = 0 to max - 1        Base64DecMap(ASC(Base64EncMap(idx))) = idx     next   END SUB   'Base64加密函數(shù)   PUBLIC FUNCTION base64Encode(plain)     if len(plain) = 0 then        base64Encode = ""        exit function     end if     dim ret, ndx, by3, first, second, third     by3 = (len(plain) / 3) * 3     ndx = 1     do while ndx <= by3        first = asc(mid(plain, ndx+0, 1))        second = asc(mid(plain, ndx+1, 1))        third = asc(mid(plain, ndx+2, 1))        ret = ret & Base64EncMap( (first / 4) AND 63 )        ret = ret & Base64EncMap( ((first * 16) AND 48) + ((second / 16) AND 15 ) )        ret = ret & Base64EncMap( ((second * 4) AND 60) + ((third / 64) AND 3 ) )        ret = ret & Base64EncMap( third AND 63)        ndx = ndx + 3     loop     if by3 < len(plain) then        first = asc(mid(plain, ndx+0, 1))        ret = ret & Base64EncMap( (first / 4) AND 63 )        if (len(plain) MOD 3 ) = 2 then          second = asc(mid(plain, ndx+1, 1))          ret = ret & Base64EncMap( ((first * 16) AND 48) + ((second / 16) AND 15 ) )          ret = ret & Base64EncMap( ((second * 4) AND 60) )        else          ret = ret & Base64EncMap( (first * 16) AND 48)          ret = ret '& "="        end if        ret = ret '& "="     end if     base64Encode = ret   END FUNCTION   'Base64解密函數(shù)   PUBLIC FUNCTION base64Decode(scrambled)     if len(scrambled) = 0 then        base64Decode = ""        exit function     end if     dim realLen     realLen = len(scrambled)     do while mid(scrambled, realLen, 1) = "="        realLen = realLen - 1     loop     dim ret, ndx, by4, first, second, third, fourth     ret = ""     by4 = (realLen / 4) * 4     ndx = 1     do while ndx <= by4        first = Base64DecMap(asc(mid(scrambled, ndx+0, 1)))        second = Base64DecMap(asc(mid(scrambled, ndx+1, 1)))        third = Base64DecMap(asc(mid(scrambled, ndx+2, 1)))        fourth = Base64DecMap(asc(mid(scrambled, ndx+3, 1)))        ret = ret & chr( ((first * 4) AND 255) +  ((second / 16) AND 3))        ret = ret & chr( ((second * 16) AND 255) + ((third / 4) AND 15))        ret = ret & chr( ((third * 64) AND 255) + (fourth AND 63))        ndx = ndx + 4     loop     if ndx < realLen then        first = Base64DecMap(asc(mid(scrambled, ndx+0, 1)))        second = Base64DecMap(asc(mid(scrambled, ndx+1, 1)))        ret = ret & chr( ((first * 4) AND 255) +  ((second / 16) AND 3))        if realLen MOD 4 = 3 then          third = Base64DecMap(asc(mid(scrambled,ndx+2,1)))          ret = ret & chr( ((second * 16) AND 255) + ((third / 4) AND 15))        end if     end if     base64Decode = ret   END FUNCTION%>

使用方法:

' 初始化 call initCodecsResponse.Write(base64Encode("武林網(wǎng)之我要加密的字符串"))Response.Write(base64Decode("bWFyczIwMTAwMjIw0"))
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 缙云县| 会泽县| 濮阳市| 林口县| 黄大仙区| 黔江区| 故城县| 同心县| 甘孜县| 永清县| 蒙城县| 项城市| 桂平市| 营山县| 庄浪县| 汶川县| 钟祥市| 濉溪县| 普兰店市| 大悟县| 南昌市| 扬中市| 大港区| 加查县| 四平市| 门源| 龙州县| 汾阳市| 梅州市| 锡林浩特市| 尚志市| 枣阳市| 武隆县| 阿克苏市| 包头市| 壶关县| 金昌市| 沈丘县| 特克斯县| 米林县| 曲阜市|