• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

.NET中带有口令加密的注册页面

发布: 2007-7-01 11:09 | 作者: admin | 来源: | 查看: 12次 | 进入软件测试论坛讨论

领测软件测试网 在ASP.NET中提供了加密的功能。名字空间System.Web.Security中包含了类FormsAuthentication,其中有一个方法HashPasswordForStoringInConfigFile。这个方法可以将用户提供的字符变成乱码,然后存储起来。注意此方法是不能继承的。
下面的代码就是在做注册页面时将数据加密后存储到数据库的过程
Imports System.Web.Security
Imports System.Data
Imports System.Data.SqlClient  @#////////所需要的名称空间

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim PassFormate As String
        @#///////////////EncryptPassword调用函数
        PassFormate = EncryptPassword(uid.Text, "md5")   @#//////////或者是EncryptPassword(uid.Text, "sha1")
        @#TextBox2.Text = EncryptPassword(uid.Text, "md5")
        @#TextBox3.Text = EncryptPassword(uid.Text, "sha1")
        @#///////////这些大家自己试验吧
        @#TextBox4.Text = FormsAuthentication.FormsCookieName
        @#TextBox5.Text = FormsAuthentication.FormsCookiePath
        @#TextBox6.Text = FormsAuthentication.GetRedirectUrl(uid.Text, True)
        @#FormsAuthentication.SetAuthCookie(uid.Text, True)

        Dim sql As String = "insert into pwd(uid,pwd) values(@uid,@pwd)"
        Dim comm As SqlCommand = New SqlCommand(sql, conn)
        conn.Open()
        comm.Parameters.Add(New SqlParameter("@uid", SqlDbType.Char, 16))
        comm.Parameters("@uid").Value = uid.Text
        comm.Parameters.Add(New SqlParameter("@pwd", SqlDbType.Char, 16))
        comm.Parameters("@pwd").Value = PassFormate
        comm.ExecuteNonQuery()
        
    End Sub

    @#////////////////定义加密函数,可以随时调用。
    Function EncryptPassword(ByVal password As String, ByVal passwordformate As String)
        If passwordformate = "sha1" Then
            EncryptPassword = FormsAuthentication.HashPasswordForStoringInConfigFile(password, "sha1")
        ElseIf passwordformate = "md5" Then
            EncryptPassword = FormsAuthentication.HashPasswordForStoringInConfigFile(password, "md5")
        Else
            EncryptPassword = ""
        End If

    End Function
至于用户的验证也是一样的思路了。

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网