gpt4 book ai didi

c++ - 如何找到 std::random_device 的 "true"熵?

转载 作者:IT老高 更新时间:2023-10-28 12:58:05 26 4
gpt4 key购买 nike

我想检查我的 std::random_device 实现是否具有非零熵(即非确定性),使用 std::random_device::entropy() 函数。然而,根据至cppreference.com

"This function is not fully implemented in some standard libraries. For example, gcc and clang always return zero even though the device is non-deterministic. In comparison, Visual C++ always returns 32, and boost.random returns 10."

有没有办法找到真正的熵?特别是做现代计算机(MacBook Pro/iMac 等)具有不确定的来源或随机性,例如使用散热监视器?

最佳答案

我向你推荐这篇文章的讲座。

Myths about /dev/urandom

§ 26.5.6

A random_device uniform random number generator produces non-deterministic random numbers.

If implementation limitations prevent generating non-deterministic random numbers, the implementation may employ a random number engine.

所以基本上它会尝试使用内部系统“真”随机数生成器,在 linux/dev/{u}random o windows RltGenRandom。

不同的一点是您不信任这些随机性来源,因为它们依赖于内部噪声或者是紧密的实现。

此外,您如何测量熵的质量,正如您所知,这是试图找到好的 rng 生成器的最大问题之一。

一种估计可能非常好,而另一种估计可能报告的熵不太好。

Entropy Estimation

In various science/engineering applications, such as independentcomponent analysis, image analysis, genetic analysis, speechrecognition, manifold learning, and time delay estimation it is usefulto estimate the differential entropy of a system or process, givensome observations.

正如它所说,你必须依赖最终的观察,而这些可能是错误的。

我你觉得内部rng不够好,你可以随时尝试为此购买硬件设备。这个list on wikipedia有供应商列表,您可以查看有关他们的互联网评论。

性能

您必须考虑的一点是使用实随机数生成器在应用程序中的性能。一种常见的技术是在 mersenne twister 中使用通过/dev/random 获得的数字作为种子。

如果用户无法物理访问您的系统,您需要在可靠性和可用性之间取得平衡,一个有安全漏洞的系统就像一个不能工作的系统一样糟糕,最后您必须对您的重要数据进行加密。

编辑 1:作为建议,我已将文章移至评论顶部,是一本不错的读物。感谢您的提示:-)。

关于c++ - 如何找到 std::random_device 的 "true"熵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28390843/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com