From 87376a0bbb5ec481f722451d00cbd61dc9b31dbc Mon Sep 17 00:00:00 2001 From: Fabian Druschke Date: Wed, 20 Mar 2024 17:39:32 -0300 Subject: [PATCH] Removed leftover references to AES-CTR, not belonging here. --- src/prng.c | 2 +- src/prng.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/prng.c b/src/prng.c index 3845606..d9fc407 100644 --- a/src/prng.c +++ b/src/prng.c @@ -32,7 +32,7 @@ nwipe_prng_t nwipe_twister = { "Mersenne Twister (mt19937ar-cok)", nwipe_twister nwipe_prng_t nwipe_isaac = { "ISAAC (rand.c 20010626)", nwipe_isaac_init, nwipe_isaac_read }; nwipe_prng_t nwipe_isaac64 = { "ISAAC-64 (isaac64.c)", nwipe_isaac64_init, nwipe_isaac64_read }; -/* AES-CTR-NI PRNG Structure */ +/* XOROSHIRO-256 PRNG Structure */ nwipe_prng_t nwipe_xoroshiro256_prng = { "XORoshiro-256", nwipe_xoroshiro256_prng_init, nwipe_xoroshiro256_prng_read }; /* Print given number of bytes from unsigned integer number to a byte stream buffer starting with low-endian. */ diff --git a/src/prng.h b/src/prng.h index 5433b1c..c48ee24 100644 --- a/src/prng.h +++ b/src/prng.h @@ -55,7 +55,7 @@ int nwipe_isaac_read( NWIPE_PRNG_READ_SIGNATURE ); int nwipe_isaac64_init( NWIPE_PRNG_INIT_SIGNATURE ); int nwipe_isaac64_read( NWIPE_PRNG_READ_SIGNATURE ); -/* AES-CTR-NI prototypes. */ +/* XOROSHIRO-256 prototypes. */ int nwipe_xoroshiro256_prng_init( NWIPE_PRNG_INIT_SIGNATURE ); int nwipe_xoroshiro256_prng_read( NWIPE_PRNG_READ_SIGNATURE );