1779539945

This commit is contained in:
2026-05-23 06:39:05 -06:00
parent 12046b6d02
commit 6c943fb07b
3 changed files with 22 additions and 3 deletions
@@ -0,0 +1,9 @@
# Verifiably, Attributably Secure Archives
## todo
1. validate attribution thing
2. clean up output
3. sanity checks
4. this README.md
5. the README-instructions.txt and placedment for archive
6. quote 7z passphrase shit (to prevent issuez)
+11 -1
View File
@@ -1 +1,11 @@
# Verifiably, Attributably Secure Archives # Verifiably, Attributably Secure Archives
## todo
1. validate attribution thing
2. clean up output
3. sanity checks
4. this README.md
5. the README-instructions.txt and placedment for archive
## Changelog
- reduced random data to 2x 10Kb
+2 -2
View File
@@ -41,10 +41,10 @@ echo "anonymous namespaces=\"$signature_tag\" $(cat "${key_path}.pub")" > "$out_
checkcode $? checkcode $?
printf "random: adding 1/2 random blocks of data to inner archive" printf "random: adding 1/2 random blocks of data to inner archive"
dd if=/dev/urandom of="$inner_dir/.$RANDOM" bs=1M count=1 > /dev/null 2>&1 dd if=/dev/urandom of="$inner_dir/.$RANDOM" bs=1K count=10 > /dev/null 2>&1
checkcode $? checkcode $?
printf "random: adding 2/3 random blocks of data to outer archive" printf "random: adding 2/3 random blocks of data to outer archive"
dd if=/dev/urandom of="$out_dir/.$RANDOM" bs=1M count=1 > /dev/null 2>&1 dd if=/dev/urandom of="$out_dir/.$RANDOM" bs=1K count=10 > /dev/null 2>&1
checkcode $? checkcode $?
printf "7z: compressing inner volume" printf "7z: compressing inner volume"