帮助在 php 中创建 md5

发布于 2024-09-05 11:57:26 字数 371 浏览 7 评论 0原文

我正在尝试使用给定的指令在 php 中创建 md5 值。我似乎无法正确理解,希望您帮助理解说明和代码。

指令是这样说的:

md5 是通过对连接这些字段构建的字符串执行 MD5 计算来构造的。具体来说,MD5 哈希是以下字段的串联:

  • $user_id

  • $trans_id

  • ASCII 的大写 MD5 值 相当于单词“secret”

  • $amount

  • $currency

  • in $status

为了自己计算,请将它们连接起来并对这个字符串进行MD5计算。

I am trying to create an md5 value in php using the instruction given. I can't seem to get it right and would like you help understanding the instructions and the code.

This is what the instructions say:

The md5 is constructed by performing an MD5 calculation on a string built up by concatenating these fields. Specifically the MD5 hash is a concatenation of the following fields:

  • $user_id

  • $trans_id

  • the uppercase MD5 value of the ASCII
    equivalent of the word 'secret'

  • $amount

  • $currency

  • in $status

In order to calculate it yourself concatenate them and perform a MD5 calculation on this string.

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

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

发布评论

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

评论(3

伪装你 2024-09-12 11:57:26
$yourMd5 = md5($user_id . $trans_id . strtoupper(md5('secret')) . $amount . $currency . $status);

这就是我对这个问题的解释。

当然,您可以预先计算 secret 的大写哈希值。但如果是家庭作业,最好像上面那样展示你的作品。

$yourMd5 = md5($user_id . $trans_id . strtoupper(md5('secret')) . $amount . $currency . $status);

That is what I interpreted the question as.

Of course, you could precompute the hash for the uppercase hash of secret. But if it's homework, probably best to show your work like above.

趁年轻赶紧闹 2024-09-12 11:57:26

$result = md5($user_id . $trans_id . strtoupper('secret') . $amount . $currency . $status)

$result = md5($user_id . $trans_id . strtoupper('secret') . $amount . $currency . $status)

梦归所梦 2024-09-12 11:57:26

我不知道“in $status”到底是什么意思,但它应该看起来像:

echo md5($user_id.$trans_id.strtoupper(md5(ord(s).ord(e).ord(c).ord(r).ord(e).ord(t))).$amount.$currency.$status);

I don't know exactly what you mean by "in $status" but it should be something looking :

echo md5($user_id.$trans_id.strtoupper(md5(ord(s).ord(e).ord(c).ord(r).ord(e).ord(t))).$amount.$currency.$status);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文