需要 php 的 sha1 和 mb_convert_encoding 的 Coldfusion 版本
有谁知道这个 php 代码的 Coldfusion 等效项吗?
$calcedVerify = sha1(mb_convert_encoding($pop, "UTF-8"));
$calcedVerify = strtoupper(substr($calcedVerify,0,8));
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注意:返回的十六进制哈希值已经是大写的。
根据 SHA-1 应在标准版中提供href="http://books.google.ca/books?id=rI0OZhmcuc0C&lpg=PT259&ots=ilNlUgAxSs&dq=coldfus ion%20hash%20sha%20sha-1&pg=PT259#v=onepage&q=coldfusion%20hash%20sha%20sha-1&f=false" rel="nofollow">Adobe ColdFusion 9 Web 应用程序构建套件,尽管 hash() doc 另有说明
substr()
~=Mid()
但 CF 索引从 1 开始,而不是 0。strtoupper()
==ucase()
mb_convert_encoding()
~=CharsetDecode()
Note: The hexadecimal hash returned is already in uppercase.
SHA-1
should be available in Standard Edition according to Adobe ColdFusion 9 Web Application Construction Kit even though the hash() doc said otherwisesubstr()
~=Mid()
but CF index starts from 1 instead of 0.strtoupper()
==ucase()
mb_convert_encoding()
~=CharsetDecode()