function cryptPassword($password)
{
if($password != "")
return mysql_escape_string(base64_encode(pack("H*", sha1(utf8_encode($password)))));
}
以上这段代码 如果用ASP实现 该怎么写?请指教?
我自己用ASP 写了一个BS64 加密程序 但是加密后的东西 和这个 加密后的 不一样....纠结!!
ASP 里 base64 的用法
答案:2 悬赏:80 手机版
解决时间 2021-12-28 15:40
- 提问者网友:像風在裏
- 2021-12-28 02:38
最佳答案
- 五星知识达人网友:像个废品
- 2021-12-28 03:27
看你的代码像是前端用法, 给你个ASP For VBS的. 另有后端JS版的,需要追问,我在贴给你.
VBScript 版本:
Function DecodeBase64(str)
With CreateObject("Microsoft.XMLDOM").createElement("TXT")
.dataType = "bin.base64"
.text = str
DecodeBase64 = .nodeTypedValue
End With
End Function
Function EncodeBase64(bytes)
With CreateObject("Microsoft.XMLDOM").createElement("TXT")
.dataType = "bin.base64"
.nodeTypedValue = bytes
EncodeBase64 = .text
End With
End Function
网上能找到的那个ASP不能编码中文, 要自己改很多代码才行
VBScript 版本:
Function DecodeBase64(str)
With CreateObject("Microsoft.XMLDOM").createElement("TXT")
.dataType = "bin.base64"
.text = str
DecodeBase64 = .nodeTypedValue
End With
End Function
Function EncodeBase64(bytes)
With CreateObject("Microsoft.XMLDOM").createElement("TXT")
.dataType = "bin.base64"
.nodeTypedValue = bytes
EncodeBase64 = .text
End With
End Function
网上能找到的那个ASP不能编码中文, 要自己改很多代码才行
全部回答
- 1楼网友:零点过十分
- 2021-12-28 03:50
asp可没内置那么多东西,这个有点难。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯