diff --git a/src/options.c b/src/options.c index a95bd41..11afce6 100644 --- a/src/options.c +++ b/src/options.c @@ -1,4 +1,4 @@ -/* +\/* * options.c: Command line processing routines for nwipe. * * Copyright Darik Horn . @@ -599,7 +599,7 @@ void nwipe_options_log( void ) } if( nwipe_options.prng == &nwipe_add_lagg_fibonacci_prng ) { - nwipe_log( NWIPE_LOG_NOTICE, " prng = XORoshiro-256 (EXPERIMENTAL!)" ); + nwipe_log( NWIPE_LOG_NOTICE, " prng = Lagged Fibonacci generator (EXPERIMENTAL!)" ); } else @@ -693,7 +693,7 @@ void display_help() puts( " -l, --logfile=FILE Filename to log to. Default is STDOUT\n" ); puts( " -P, --PDFreportpath=PATH Path to write PDF reports to. Default is \".\"" ); puts( " If set to \"noPDF\" no PDF reports are written.\n" ); - puts( " -p, --prng=METHOD PRNG option (mersenne|twister|isaac|isaac64)\n" ); + puts( " -p, --prng=METHOD PRNG option (mersenne|twister|isaac|isaac64|add_lagg_fibonacci_prng)\n" ); puts( " -q, --quiet Anonymize logs and the GUI by removing unique data, i.e." ); puts( " serial numbers, LU WWN Device ID, and SMBIOS/DMI data" ); puts( " XXXXXX = S/N exists, ????? = S/N not obtainable\n" ); diff --git a/src/prng.h b/src/prng.h index 83d0a68..d25c83f 100644 --- a/src/prng.h +++ b/src/prng.h @@ -66,7 +66,7 @@ int nwipe_add_lagg_fibonacci_prng_read( NWIPE_PRNG_READ_SIGNATURE ); #define SIZE_OF_ISAAC 4 #define SIZE_OF_ISAAC64 8 -/* Size of the XOROSHIRO-256 is not derived from the architecture, but it is strictly 32 bytes */ +/* Size of the Lagged Fibonacci generator is not derived from the architecture, but it is strictly 32 bytes */ #define SIZE_OF_ADD_LAGG_FIBONACCI_PRNG 32 #endif /* PRNG_H_ */