Skip to content

Commit

Permalink
To consider, AES-128-CTR as default option for 64-Bit, and Xoroshiro-…
Browse files Browse the repository at this point in the history
…256 as default option for 32-Bit due to performance and quality reasons.
  • Loading branch information
Knogle committed Mar 24, 2024
1 parent 1a964bc commit 55472fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ int nwipe_options_parse( int argc, char** argv )
nwipe_options.autonuke = 0;
nwipe_options.autopoweroff = 0;
nwipe_options.method = &nwipe_dodshort;
nwipe_options.prng = ( sizeof( unsigned long int ) >= 8 ) ? &nwipe_isaac64 : &nwipe_isaac;
nwipe_options.prng = ( sizeof( unsigned long int ) >= 8 ) ? &nwipe_aes_ctr_prng : &nwipe_xoroshiro256_prng;
nwipe_options.rounds = 1;
nwipe_options.noblank = 0;
nwipe_options.nousb = 0;
Expand Down

0 comments on commit 55472fb

Please sign in to comment.