最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Serv-U软件密码加密函数
时间:2022-06-30 09:15:36 编辑:袖梨 来源:一聚教程网
<%
'==================================================
'函数名:ServUPassEnCode
'作 用:Serv-U软件密码加密函数
'参 数:strPass ------ 字符串
'作 者:netyum(杨嵩)
'时 间:2004年6月28日
'==================================================
Function SerUPassEnCode(strPass)
Dim Char1,Char2,Seed,prePass,EncodePass,FinalPass
If IsNull(strPass) Or strPass="" Then Exit Function
Char1 = Chr(Rand(97,122))
Char2 = Chr(Rand(97,122))
Seed = Char1 & Char2
prePass = Seed & strPass
EnCodePass = Ucase(md5(prePass)) '32位md5
FinalPass = Seed & EnCodePass
SerUPassEnCode = FinalPass
End Function
'==================================================
'函数名:Rand
'作 用:取两个整数之间的随机数
'参 数:n,m ------ 整数
'作 者:netyum(杨嵩)
'时 间:2004年6月28日
'==================================================
Function Rand(n,m)
Dim a,b,t
a = n : b = m
If b < a Then t = b : b = a : a = t
Randomize
Rand = Int(rnd*(b-a+1)+a)
End Function
%>
相关文章
- 光遇水之灵怎么找-水之灵位置攻略 07-12
- 剑星拉毗服装如何获取 拉毗服装获取方式分享 07-12
- 晨会分享朋友圈文案 07-12
- 幻兽帕鲁雷冠龙捕捉位置在哪 帕鲁雷冠龙位置介绍 07-12
- Solana与Bullish达成关键整合,助力稳定币发展 07-12
- 幻兽帕鲁花冠龙哪里可以抓到 帕鲁花冠龙捕捉地点介绍 07-12