文件名称:BASE64
介绍说明--下载内容均来自于网络,请自行研究使用
BASE64解码 VBS源代码
Function fDecode(sStringToDecode)
Const CharList = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
Dim iDataLength, sOutputString, iGroupInitialCharacter
sStringToDecode = Replace(Replace(Replace(sStringToDecode, vbCrLf, ""), vbTab, ""), " ", "")
iDataLength = Len(sStringToDecode)
If iDataLength Mod 4 <> 0 Then
fDecode = "Bad string passed to fDecode() function."
Exit Function -BASE64 decoding the VBS source the code Function fDecode (sStringToDecode) the Const CharList = " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/Dim iDataLength, sOutputString, iGroupInitialCharacter sStringToDecode = Replace (Replace (Replace (sStringToDecode, vbCrLf," " ), vbTab," " )," " ," " ) iDataLength = Len (sStringToDecode) If iDataLength Mod 4 < > 0 Then fDecode = " Bad string passed to fDecode () function." Exit Function
Function fDecode(sStringToDecode)
Const CharList = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
Dim iDataLength, sOutputString, iGroupInitialCharacter
sStringToDecode = Replace(Replace(Replace(sStringToDecode, vbCrLf, ""), vbTab, ""), " ", "")
iDataLength = Len(sStringToDecode)
If iDataLength Mod 4 <> 0 Then
fDecode = "Bad string passed to fDecode() function."
Exit Function -BASE64 decoding the VBS source the code Function fDecode (sStringToDecode) the Const CharList = " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/Dim iDataLength, sOutputString, iGroupInitialCharacter sStringToDecode = Replace (Replace (Replace (sStringToDecode, vbCrLf," " ), vbTab," " )," " ," " ) iDataLength = Len (sStringToDecode) If iDataLength Mod 4 < > 0 Then fDecode = " Bad string passed to fDecode () function." Exit Function
(系统自动生成,下载前可以参看下载内容)
下载文件列表
BASE64.VBS