欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASPWebPack 代码 提供下载

程序员文章站 2022-04-14 20:26:11
复制代码 代码如下:dim pwd pwd=inputbox("请输入新密码:","更改密码","yulv.net") if pwd<>""...
复制代码 代码如下:

dim pwd
pwd=inputbox("请输入新密码:","更改密码","yulv.net")
if pwd<>"" then
    pwd=pwdconv(pwd)
    inputbox "您的新密码编码是:" & vbcrlf & "请将新的编码替换到程序中的密码项!","密码编码",pwd
else
    msgbox "您没有输入新密码,系统无法帮您转换!"
end if
function pwdconv(byval spwd)
    dim i,ref,value,ltmp
    ltmp=0
    for i = 1 to lenb(spwd)
        value=ascb(midb(spwd,i,1))
        value=(value*i) + 255
        if (ltmp+value)>(&hff*lenb(spwd)) then
            ref=ref & hex(ltmp)
            ltmp=0
        end if
        ltmp=ltmp + value + len(cstr(ltmp))
    next
    if ltmp>0 then ref=ref & hex(ltmp)
    if mid(ref,1,1)="0" then ref=hex(len(ref)) & ref
    pwdconv= ref
end function


本地下载