Hardware Random Number Generators on Intel Chipsets

Hardware Random Number Generators on Intel Chipsets

Hardware Random Number Generators on Intel Chipsets

If you’re running Linux or one of the BSDs on an Intel platform, you may have been told that you have a hardware random number generator (RNG) in your chipset. Recent kernels of Linux, OpenBSD, FreeBSD, and NetBSD all include drivers for these devices.

Unfortunately, it’s likely that few people ever got RNGs in their chipsets. Intel has now confirmed that its current-generation 865 and 875 chipsets do not include a hardware RNG, and that newer chipsets will also not include this device. Starting with the 810 in 1999, some Intel chipsets did include RNGs; but the firmware hub that included the RNG soon became an optional component of the chipset, and was probably only present thereafter in mainboards manufactured by Intel. The newer your mainboard with an Intel chipset, the less likely it is that you have an RNG onboard.

Also unfortunately, the Linux and *BSD drivers and daemons will not necessarily, as of this writing, tell you that you don’t have an RNG. You may have to infer it from the failure of the RNG to produce random data.

If you search the web for “Intel hardware random”, you could be forgiven for concluding that Intel’s RNG program is alive and well. There are many articles about the Intel RNGs. But look again: all of those articles are two to four years old. Intel’s RNG program is defunct.

Definitive information about this problem has been scarce. This site collects all of the evidence I’ve been able to find.

News

  • 2003-12-27:
    • Site redesign.
  • 2003-12-14:
  • 2003-12-05:
    • Added information on dmidecode in “Do I Have an RNG?”
    • Added one report to the chipset database.
  • 2003-11-14:
  • 2003-11-12:
    • Added information on /proc/bus/input/devices in “Do I Have an RNG?”
    • Updated information on Sandra results in “Do I Have an RNG?”
    • Added three more reports to the chipset database.
  • 2003-11-06:
    • Reorganized site.
    • Added sections “What Intel Says” and “RNG and Chipset Database”.
  • 2003-10-25:
    • Site debut.
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/111163.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • winscp链接linux网络错误被决绝,解决了winscp连接不上的问题

    winscp链接linux网络错误被决绝,解决了winscp连接不上的问题在windows系统和虚拟机装的linux上互传文件时,可以用winscp。第一次用winscp时,老是连接不到linux上。但是两个系统都可以上网,还能ping通。还以为是端口22被什么进程占用。我的是windows2003的,虚拟机是redhatlinux9.0的。昨天下午又试试了,就解决这个问题啦。2.把linux里的防火墙给关了。步骤:在终端输入setup,在防火墙选择处,选择“无防…

    2022年9月15日
    0
  • linux initramfs,Linux INITRAMFS 与 INITRD「建议收藏」

    linux initramfs,Linux INITRAMFS 与 INITRD「建议收藏」initramfs文件生效的过程大致分为四步:第一步:Kernel首先要注册一个RAMFS文件系统类型(实际注册的类型名称是”ROOTFS”,后续我们可以看到它实际上就是”RAMFS”);第二步:然后加载(mount)一个空的rootfs文件系统,类型就是上面提到的RAMFS(ROOTFS);第三步:寻址initramfs文件“XXX.cpio.gz”并解压到已mount的rootfs文件系统中;…

    2022年8月11日
    7
  • pandas中关于DataFrame行,列显示不完全(省略)的解决办法[通俗易懂]

    pandas中关于DataFrame行,列显示不完全(省略)的解决办法[通俗易懂]有时候DataFrame中的行列数量太多,print打印出来会显示不完全。就像下图这样:列显示不全:行显示不全:添加如下代码,即可解决。#显示所有列pd.set_option(‘display.max_columns’,None)#显示所有行pd.set_option(‘display.max_rows’,None)#设置value的显示长度为100,默…

    2022年7月15日
    14
  • HTML文件的注释及其快捷键

    HTML文件的注释及其快捷键                                       <!–注释内容–>                   快捷键:ctrl+?…

    2022年4月29日
    73
  • 什么是卫语句(卫语句)

    如果条件语句极其复杂,就应该将条件语句拆解开,然后逐个检查,并在条件为真时立刻从函数中返回,这样的单独检查通常被称之为“卫语句”(guardclauses)摘自《重构—改善既有代码的设计》卫语句的效果就是将原来需要仔细阅读代码、细心整理逻辑的条件判断整理成一眼能看透的逻辑关系,效果就像以下:if(it==活的){if(it==人){if(it!=女人){…

    2022年4月18日
    101
  • 如何自建一个git服务器,搭建Git服务器,真的很简单

    如何自建一个git服务器,搭建Git服务器,真的很简单重要提醒,本教材适用于gitolitev2,与当前最新版v3不兼容!!需要在checkoutgitolite后,切换到v2版!!其实真的只需要几句#现在开始是root做的#安装Gitapt-getinstallgit#拷贝你自己的公钥cp~/.ssh/id_rsa.pub/tmp/wendal.pubgitclonegit://github.com/sitaramc/gitoli…

    2022年10月4日
    0

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号