From 6c943fb07bdeb01124d92e057403a8e7e8541751 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 23 May 2026 06:39:05 -0600 Subject: [PATCH] 1779539945 --- README (# Edit conflict 2026-05-23 3nkxhtC #).md | 9 +++++++++ README.md | 12 +++++++++++- create-attributable-archive.sh | 4 ++-- 3 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 README (# Edit conflict 2026-05-23 3nkxhtC #).md diff --git a/README (# Edit conflict 2026-05-23 3nkxhtC #).md b/README (# Edit conflict 2026-05-23 3nkxhtC #).md new file mode 100644 index 0000000..10b3f54 --- /dev/null +++ b/README (# Edit conflict 2026-05-23 3nkxhtC #).md @@ -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) \ No newline at end of file diff --git a/README.md b/README.md index 3f733ea..ca9c0af 100644 --- a/README.md +++ b/README.md @@ -1 +1,11 @@ -# Verifiably, Attributably Secure Archives \ No newline at end of file +# 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 \ No newline at end of file diff --git a/create-attributable-archive.sh b/create-attributable-archive.sh index 0569eef..244af47 100755 --- a/create-attributable-archive.sh +++ b/create-attributable-archive.sh @@ -41,10 +41,10 @@ echo "anonymous namespaces=\"$signature_tag\" $(cat "${key_path}.pub")" > "$out_ checkcode $? 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 $? 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 $? printf "7z: compressing inner volume"