SQL Server 中的密码加盐
我有一个项目来开始对密码进行加盐。为了避免破坏我们现有的应用程序,这将需要在存储过程中执行哈希。
由于我是这个主题的新手,你能告诉我从哪里开始吗?
I have a project to start salting passwords. In order to avoid breaking our existing applications, this will require performing the hash inside a stored procedure.
Since I'm a total newbie on this topic, can you tell me where to get started.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这需要 CLR 函数来进行哈希处理。以下是 MSDN 中的一些信息。 此处是哈希的链接。
This would require a CLR function to do the hashing. Here is some info in MSDN. And here is a link for the hashing.