vb 中的MD5加密在asp.net中的实现
程序员文章站
2024-03-03 23:37:10
1、web项目中方法: 复制代码 代码如下: system.web.security.formsauthentication.hashpasswordforstoringi...
1、web项目中方法:
system.web.security.formsauthentication.hashpasswordforstoringinconfigfile("aaaa","md5")
system.web.security.formsauthentication.hashpasswordforstoringinconfigfile("aaaa","md5")
查看文档方法:
publicsharedfunctionhashpasswordforstoringinconfigfile(byvalpasswordasstring,byvalpasswordformatasstring)asstring
成员属于:system.web.security.formsauthentication
摘要:
给定标识哈希类型的密码和字符串,该例程产生一个适合存储在配置文件中的哈希密码。
参数:
password:要进行哈希运算的密码。
passwordformat:要使用的哈希算法。选项有“sha1”或“md5”。
返回值:
返回一个包含哈希密码的string。
publicsharedfunctionhashpasswordforstoringinconfigfile(byvalpasswordasstring,byvalpasswordformatasstring)asstring
成员属于:system.web.security.formsauthentication
摘要:
给定标识哈希类型的密码和字符串,该例程产生一个适合存储在配置文件中的哈希密码。
参数:
password:要进行哈希运算的密码。
passwordformat:要使用的哈希算法。选项有“sha1”或“md5”。
返回值:
返回一个包含哈希密码的string。
2、vb的应用程序:
publicsharedfunctionmd5str(byrefstrsourceasstring)
dimdatatohashasbyte()=(newsystem.text.unicodeencoding).getbytes(strsource.tochararray)
dimhashvalueasbyte()=ctype(cryptography.cryptoconfig.createfromname("md5"),cryptography.hashalgorithm).computehash(datatohash)
dimstrsbasnewsystem.text.stringbuilder
foriasint16=0tohashvalue.length-1
strsb.append(hashvalue(i).tostring("x2"))
next
dimcreatmd5=strsb.tostring
returncreatmd5
endfunction
publicsharedfunctionmd5str(byrefstrsourceasstring)
dimdatatohashasbyte()=(newsystem.text.unicodeencoding).getbytes(strsource.tochararray)
dimhashvalueasbyte()=ctype(cryptography.cryptoconfig.createfromname("md5"),cryptography.hashalgorithm).computehash(datatohash)
dimstrsbasnewsystem.text.stringbuilder
foriasint16=0tohashvalue.length-1
strsb.append(hashvalue(i).tostring("x2"))
next
dimcreatmd5=strsb.tostring
returncreatmd5
endfunction
复制代码 代码如下:
system.web.security.formsauthentication.hashpasswordforstoringinconfigfile("aaaa","md5")
system.web.security.formsauthentication.hashpasswordforstoringinconfigfile("aaaa","md5")
查看文档方法:
复制代码 代码如下:
publicsharedfunctionhashpasswordforstoringinconfigfile(byvalpasswordasstring,byvalpasswordformatasstring)asstring
成员属于:system.web.security.formsauthentication
摘要:
给定标识哈希类型的密码和字符串,该例程产生一个适合存储在配置文件中的哈希密码。
参数:
password:要进行哈希运算的密码。
passwordformat:要使用的哈希算法。选项有“sha1”或“md5”。
返回值:
返回一个包含哈希密码的string。
publicsharedfunctionhashpasswordforstoringinconfigfile(byvalpasswordasstring,byvalpasswordformatasstring)asstring
成员属于:system.web.security.formsauthentication
摘要:
给定标识哈希类型的密码和字符串,该例程产生一个适合存储在配置文件中的哈希密码。
参数:
password:要进行哈希运算的密码。
passwordformat:要使用的哈希算法。选项有“sha1”或“md5”。
返回值:
返回一个包含哈希密码的string。
2、vb的应用程序:
复制代码 代码如下:
publicsharedfunctionmd5str(byrefstrsourceasstring)
dimdatatohashasbyte()=(newsystem.text.unicodeencoding).getbytes(strsource.tochararray)
dimhashvalueasbyte()=ctype(cryptography.cryptoconfig.createfromname("md5"),cryptography.hashalgorithm).computehash(datatohash)
dimstrsbasnewsystem.text.stringbuilder
foriasint16=0tohashvalue.length-1
strsb.append(hashvalue(i).tostring("x2"))
next
dimcreatmd5=strsb.tostring
returncreatmd5
endfunction
publicsharedfunctionmd5str(byrefstrsourceasstring)
dimdatatohashasbyte()=(newsystem.text.unicodeencoding).getbytes(strsource.tochararray)
dimhashvalueasbyte()=ctype(cryptography.cryptoconfig.createfromname("md5"),cryptography.hashalgorithm).computehash(datatohash)
dimstrsbasnewsystem.text.stringbuilder
foriasint16=0tohashvalue.length-1
strsb.append(hashvalue(i).tostring("x2"))
next
dimcreatmd5=strsb.tostring
returncreatmd5
endfunction
下一篇: Spring-Boot框架初步搭建
推荐阅读
-
vb 中的MD5加密在asp.net中的实现
-
android中对文件加密解密的实现
-
asp.net中使用cookie与md5加密实现记住密码功能的实现代码
-
在ASP.NET中连接SQL Server的简单方法
-
ASP.NET MVC 中实现基于角色的权限控制的处理方法
-
ASP.NET中的几种弹出框提示基本实现方法
-
asp.net中的“按需打印”(打印你需要打印的部分) 实现代码
-
在dropDownList中实现既能输入一个新值又能实现下拉选的代码
-
Asp.Net FckEditor在web.config中配置的具体实例
-
Asp.net中把Excel数据存储至SQL Server中的具体实现方法