我使用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中实现这一目标?