On Wed, Jan 11, 2023 at 12:47:39PM -0800, Eric Biggers wrote: > +bs=$FSV_BLOCK_SIZE > +hash_size=32 # SHA-256 > +hash_per_block=$(echo "scale=30; $bs/($hash_size)" | $BC -q) > + > +# Compute the proportion of the original file size that the non-leaf levels of > +# the Merkle tree take up. Ignoring padding, this is 1/${hashes_per_block}^2 + > +# 1/${hashes_per_block}^3 + 1/${hashes_per_block}^4 + ... Compute it using the Sorry, just saw a couple minor things to fix. v3 incoming... - Eric