使用Visual Studio Lightswitch生成哈希密码并将其存储在数据库中

时间:2013-11-18 17:21:46

标签: vb.net visual-studio-lightswitch

我使用Lightswitch作为支持网上商店(ASP.NET)的SQL Server数据库的前端。

我现在希望能够使用Lightswitch为客户提供新密码(也是SHA256编码)。

有一个带有字段Password的客户表。有没有办法在我的客户屏幕上有一个按钮TextBox,它增加了生成SHA256(然后是Base64)编码密码的功能?

目前我有一个aspx页面,当用户向商店注册时会生成编码密码:

Dim inputBytes As Byte() = Encoding.UTF8.GetBytes(password)
Dim algorithm As HashAlgorithm = New SHA256Managed
Dim outputBytes As Byte() = algorithm.ComputeHash(inputBytes)
Dim hashedPassword As String = Convert.ToBase64String(outputBytes)

有没有办法在Lightswitch中实现这一目标?

0 个答案:

没有答案