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

首頁 > 編程 > VBScript > 正文

vbs版的解密base64加密的腳本

2020-06-26 18:11:22
字體:
來源:轉載
供稿:網友
vbs版的解密base64加密的腳本
 

 

復制代碼代碼如下:

Function fDecode(sStringToDecode)  
'This function will decode a Base64 encoded string and returns the decoded string.  
'This becomes usefull when attempting to hide passwords from prying eyes.  
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  
End If  
For iGroupInitialCharacter = 1 To iDataLength Step 4  
Dim iDataByteCount, iCharacterCounter, sCharacter, iData, iGroup, sPreliminaryOutString  
iDataByteCount = 3  
iGroup = 0  
   For iCharacterCounter = 0 To 3  
    sCharacter = Mid(sStringToDecode, iGroupInitialCharacter + iCharacterCounter, 1)  
     If sCharacter = "=" Then  
      iDataByteCount = iDataByteCount - 1  
      iData = 0  
     Else  
      iData = InStr(1, CharList, sCharacter, 0) - 1  
       If iData = -1 Then  
        fDecode = "Bad string passed to fDecode() function."  
        Exit Function  
       End If  
     End If  
    iGroup = 64 * iGroup + iData  
   Next  
iGroup = Hex(iGroup)  
iGroup = String(6 - Len(iGroup), "0") & iGroup  
sPreliminaryOutString = Chr(CByte("&H" & Mid(iGroup, 1, 2))) & Chr(CByte("&H" & Mid(iGroup, 3, 2))) & Chr(CByte("&H" & Mid(iGroup, 5, 2)))  
sOutputString = sOutputString & Left(sPreliminaryOutString, iDataByteCount)  
Next  
fDecode = sOutputString  
End Function

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 武鸣县| 且末县| 横峰县| 西乌珠穆沁旗| 金塔县| 理塘县| 唐海县| 佛冈县| 满城县| 融水| 留坝县| 喜德县| 阳江市| 韶山市| 宝丰县| 乌兰浩特市| 岳阳市| 东阳市| 阿瓦提县| 资阳市| 遵义县| 温泉县| 敦煌市| 长顺县| 龙陵县| 岐山县| 浦县| 南康市| 德州市| 保康县| 新津县| 凤冈县| 上杭县| 浦江县| 西昌市| 朔州市| 乐清市| 东明县| 西乌珠穆沁旗| 渝北区| 宁陵县|