svn commit: r267984 - head/sys/dev/random

Xin LI delphij at FreeBSD.org
Fri Jun 27 21:33:15 UTC 2014


Author: delphij
Date: Fri Jun 27 21:33:15 2014
New Revision: 267984
URL: http://svnweb.freebsd.org/changeset/base/267984

Log:
  Use Intel's official name (Secure Key) per Intel® Digital Random Number
  Generator (DRNG) Software Implementation Guide.
  
  Reviewed by:	kib
  Approved by:	so
  MFC after:	2 weeks

Modified:
  head/sys/dev/random/ivy.c

Modified: head/sys/dev/random/ivy.c
==============================================================================
--- head/sys/dev/random/ivy.c	Fri Jun 27 20:57:12 2014	(r267983)
+++ head/sys/dev/random/ivy.c	Fri Jun 27 21:33:15 2014	(r267984)
@@ -56,7 +56,7 @@ __FBSDID("$FreeBSD$");
 static int random_ivy_read(void *, int);
 
 static struct random_hardware_source random_ivy = {
-	.ident = "Hardware, Intel IvyBridge+ RNG",
+	.ident = "Hardware, Intel Secure Key RNG",
 	.source = RANDOM_PURE_RDRAND,
 	.read = random_ivy_read
 };


More information about the svn-src-all mailing list