有人可以帮我解释一下生日效应吗?

发布于 2024-08-31 15:02:50 字数 391 浏览 2 评论 0原文

请帮助解释维基百科中描述的生日效应:

生日攻击的工作原理如下:

  1. 选择任意消息 m 并计算 h(m)。
  2. 更新列表L。检查h(m)是否在列表L中。
  3. 如果 (h(m),m) 已在 L 中,则已发现冲突消息对。 否则将 (h(m),m) 对保存在 列出 L 并返回步骤 1。

从生日悖论我们知道我们可以期望找到一个 执行 about 后匹配条目 2^(n/2) 次哈希评估。

上述是否意味着通过上述整个循环进行 2^(n/2) 次迭代(即 2^(n/2) 返回到步骤 1),或者是否意味着与 L 中已有的单个项目进行 2^(n/2) 次比较?

Please help interpret the Birthday effect as described in Wikipedia:

A birthday attack works as follows:

  1. Pick any message m and compute h(m).
  2. Update list L. Check if h(m) is in the list L.
  3. if (h(m),m) is already in L, a colliding message pair has been found.
    else save the pair (h(m),m) in the
    list L and go back to step 1.

From the birthday paradox we know that we can expect to find a
matching entry, after performing about
2^(n/2) hash evaluations.

Does the above mean 2^(n/2) iterations through the above entire loop (i.e. 2^(n/2) returns to step 1), OR does it mean 2^(n/2) comparisons to individual items already in L?

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

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

发布评论

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

评论(1

痴情换悲伤 2024-09-07 15:02:50

这意味着循环进行 2^(n/2) 次迭代。但请注意,这里的 L 并不是一个普通的列表,而是一个将 h(m) 映射到 m 的哈希表。因此每次迭代平均只需要常数 (O(1)) 次比较,总共会有 O(2^(n/2)) 次比较。

如果 L 是普通数组或链表,则比较次数会大得多,因为每次迭代都需要搜索整个列表。但这将是实现该算法的一个糟糕方法。

It means 2^(n/2) iterations through the loop. But note that L would not be a normal list here, but a hash table mapping h(m) to m. So each iteration would only need a constant number (O(1)) of comparisons in average, and there would be O(2^(n/2)) comparisons in total.

If L had been a normal array or a linked list, then the number of comparisons would be much larger since you would need to search through the whole list each iteration. This would be a bad way to implement this algorithm though.

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