SQL Server 中的 sha256 函数
SQL Server中有内置的sha256函数吗?我也找不到 sha256 T-SQL 函数源代码。谁有替代方案吗?
Is there a built-in sha256 function in SQL Server? I can't find a sha256 T-SQL function source code either. Anyone who has an alternative?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQL Server 2012 支持 SHA2_256 和 SHA2_512。
SQL Server 2012 supports SHA2_256 and SHA2_512.
我认为您正在寻找 HASHBYTES,但它最多仅支持 SHA -1(160 字节)
仅供参考,散列不加密。这是不可逆转的。加密是获取原始数据的可逆过程。
SHA2 参考
Here is a discussion about adding a salt to hashes
至于 256 字节哈希函数 - 没有内置函数。
I think you are looking for HASHBYTES, but it supports only up to SHA-1 (160 bytes)
FYI Hashing is not encrypting. It is irreversible. Encryption is a process that is reversible to get the original data.
Reference for SHA2
Here is a discussion about adding a salt to hashes
As for 256-byte hashing function - there isn't one built in.