我从http://personalsources.com/includes/functions.asp中提取了这段 ASP 代码,并将所有密码编码为 RC4,编码的功能是:
function rc4(byref thestr, byref thekey)
dim asciiarray(255)
dim keyarray(255)
if isnull(thestr) then exit function
if len(thekey)=0 then exit function
if len(thestr)=0 then thestr=" "
if len(thestr)=0 then exit function
zxlen=len(thekey)
for ipos=0 To 255
keyarray(ipos)=asc(mid(thekey, ((ipos) Mod (zxlen)) + 1, 1))
next
for ipos=0 To 255
asciiarray(ipos)=ipos
next
vpos=0
for ipos=0 To 255
vpos=(vpos + asciiarray(ipos) + keyarray(ipos)) Mod 256
tempa= asciiarray(ipos)
asciiarray(ipos)=asciiarray(vpos)
asciiarray(vpos)=tempa
next
ipos=0
vpos=0
for rcx=1 To len(thestr)
ipos=(ipos + 1) Mod 256
vpos=(vpos + asciiarray(ipos)) Mod 256
tempb=(asciiarray(ipos) + asciiarray(vpos)) Mod 256
tempa=asciiarray(ipos)
asciiarray(ipos)=asciiarray(vpos)
asciiarray(vpos)=tempa
tempc=asciiarray(tempb)
rc4=rc4 & chr(asc(mid(thestr, rcx, 1)) xor tempc)
next
end function
你知道我们是否有加密密钥(RC4),所以我们可以很容易地解密密码,但我不知道这个功能是如何加密密码的?这个函数的确切算法是什么?这可以编写一个函数来解密这个 RC4 密码吗?
例如,这个函数的加密密码是这样的(它永远不像 RC4 密码!!!):
>r²çÅÅ