git: 38e9d282cd7d - main - random: fenestrasX: add RDSEED support
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 23 Oct 2025 16:53:05 UTC
The branch main has been updated by obrien:
URL: https://cgit.FreeBSD.org/src/commit/?id=38e9d282cd7dacbf64883b45544723408cfd4d09
commit 38e9d282cd7dacbf64883b45544723408cfd4d09
Author: David E. O'Brien <obrien@FreeBSD.org>
AuthorDate: 2025-10-23 04:49:02 +0000
Commit: David E. O'Brien <obrien@FreeBSD.org>
CommitDate: 2025-10-23 16:52:55 +0000
random: fenestrasX: add RDSEED support
Reviewed by: cem
Fixes: 3a1298 random: add RDSEED as a provably unique entropy source
Differential Revision: https://reviews.freebsd.org/D53291
---
sys/dev/random/fenestrasX/fx_pool.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys/dev/random/fenestrasX/fx_pool.c b/sys/dev/random/fenestrasX/fx_pool.c
index ec59b97a2070..95c2d223e0de 100644
--- a/sys/dev/random/fenestrasX/fx_pool.c
+++ b/sys/dev/random/fenestrasX/fx_pool.c
@@ -179,6 +179,9 @@ static const struct fxrng_ent_char {
[RANDOM_PURE_RDRAND] = {
.entc_cls = &fxrng_hi_pull,
},
+ [RANDOM_PURE_RDSEED] = {
+ .entc_cls = &fxrng_hi_pull,
+ },
[RANDOM_PURE_NEHEMIAH] = {
.entc_cls = &fxrng_hi_pull,
},