需要 php 的 sha1 和 mb_convert_encoding 的 Coldfusion 版本

发布于 2024-12-12 19:43:13 字数 198 浏览 0 评论 0 原文

有谁知道这个 php 代码的 Coldfusion 等效项吗?

    $calcedVerify = sha1(mb_convert_encoding($pop, "UTF-8"));

    $calcedVerify = strtoupper(substr($calcedVerify,0,8));

谢谢!

Does anyone know the coldfusion equivelent for this php code?

    $calcedVerify = sha1(mb_convert_encoding($pop, "UTF-8"));

    $calcedVerify = strtoupper(substr($calcedVerify,0,8));

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尾戒 2024-12-19 19:43:13
<cfset calcedVerify = Hash(pop ,"SHA-1", "UTF-8")>
<cfset calcedVerify = Left(calcedVerify, 8)>

注意:返回的十六进制哈希值已经是大写的。

根据 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()

<cfset calcedVerify = Hash(pop ,"SHA-1", "UTF-8")>
<cfset calcedVerify = Left(calcedVerify, 8)>

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 otherwise

substr() ~= Mid() but CF index starts from 1 instead of 0.

strtoupper() == ucase()

mb_convert_encoding() ~= CharsetDecode()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文