On Fri, Jun 15, 2018 at 8:54 AM, Russell O'Connor <rocon...@blockstream.io> wrote: > >> For codes designed for length 341 (the first length enough to support >> 512 bits of data): >> * correct 1 error = 3 checksum characters >> * correct 2 errors = 7 checksum characters >> * correct 3 errors = 11 checksum characters >> * correct 4 errors = 15 checksum characters >> * correct 5 errors = 19 checksum characters >> * ... >> * correct 7 errors = 26 checksum characters (~ length * 1.25) >> * correct 13 errors = 51 checksum characters (~ length * 1.5) >> * correct 28 errors = 102 checksum characters (~ length * 2) >> >> So it really boils down to a trade-off between length of the code, and >> recovery properties. > > > At the risk of making the proposal more complex, I wonder if it might be > better to support multiple checksum variants? The trade-off between code > length and recovery seems to be largely determined by the user's medium of > storage, which is likely to vary from person to person. I personally would > probably be interested in the 51 or even 102 character checksums variants.
Here are some more numbers then. It's important to note that the number of correctable errors includes errors inside the checksum characters themselves. So if you want to aim for a certain percentage of correctable characters, the numbers go up much more dramatically. For codes restricted to 341 characters total (including the checksum characters), and assuming 103 data characters (enough for 512 bits): * With 26 checksum characters (adding 25%, 20% of overall string), 7 errors can be corrected (5% of overall string) * With 62 checksum characters (adding 60%, 38% of overall string), 17 errors can be corrected (10% of overall string) * With 116 checksum characters (adding 113%, 53% of overall string), 33 errors can be corrected (15% of overall string) * With 195 checksum characters (adding 189%, 65% of overall string), 60 errors can be corrected (20% of overall string) For codes restricted to 1023 characters total (including the checksum characters), and assuming 103 data characters (enough for 512 bits): * With 27 checksum characters (adding 26%, 21% of overall string), 7 errors can be corrected (5% of overall string) * With 64 checksum characters (adding 62%, 38% of overall string), 17 errors can be corrected (10% of overall string) * With 127 checksum characters (adding 123%, 57% of overall string), 36 errors can be corrected (15% of overall string) * With 294 checksum characters (adding 285%, 74% of overall string), 80 errors can be corrected (20% of overall string) * With 920 checksum characters (adding 893%, 90% of overall string), 255 errors can be corrected (25% of overall string) I'll gladly construct reference source code for any of these. Cheers, -- Pieter _______________________________________________ bitcoin-dev mailing list bitcoin-dev@lists.linuxfoundation.org https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev