1781374782

This commit is contained in:
2026-06-13 12:19:41 -06:00
parent 462214de78
commit 82426bb3f2
5 changed files with 2 additions and 89 deletions
+2 -2
View File
@@ -246,11 +246,11 @@ if [[ -z "$random" || "$random" =~ ^[nN]$ ]]; then
echo -e "No random data added. ${GREEN}OK!${RESET}\n"
else
printf 'random: adding 1/2 random blocks of data (128 bytes) to outer archive...\n'
openssl rand -out "$out_dir/.$RANDOM" 128 >/dev/null 2>&1
openssl rand -out "$out_dir/.$RANDOM" 16 >/dev/null 2>&1
checkcode $?
printf 'random: adding 2/2 random blocks of data (128 bytes) to inner archive...\n'
openssl rand -out "$inner_dir/.$RANDOM" 128 >/dev/null 2>&1
openssl rand -out "$inner_dir/.$RANDOM" 16 >/dev/null 2>&1
checkcode $?
fi