summaryrefslogtreecommitdiff
path: root/d6/39728368c597362a9e46f7908f60dc5c8e31f6
blob: c4283decf2ba38a60ae249b8816e1442e9ca0aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
Return-Path: <stick@satoshilabs.com>
Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137])
 by lists.linuxfoundation.org (Postfix) with ESMTP id 7C0DBC002B
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 16 Feb 2023 11:50:55 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by smtp4.osuosl.org (Postfix) with ESMTP id 51A854189D
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 16 Feb 2023 11:50:55 +0000 (UTC)
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org 51A854189D
Authentication-Results: smtp4.osuosl.org;
 dkim=pass (2048-bit key) header.d=satoshilabs.com header.i=@satoshilabs.com
 header.a=rsa-sha256 header.s=google header.b=eT/lNaN2
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -1.6
X-Spam-Level: 
X-Spam-Status: No, score=-1.6 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
 DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, HTML_MESSAGE=0.001,
 PDS_BTC_ID=0.499, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001] autolearn=no autolearn_force=no
Received: from smtp4.osuosl.org ([127.0.0.1])
 by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id qUdOH6yVCySb
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 16 Feb 2023 11:50:51 +0000 (UTC)
X-Greylist: whitelisted by SQLgrey-1.8.0
DKIM-Filter: OpenDKIM Filter v2.11.0 smtp4.osuosl.org B8AE34189B
Received: from mail-ej1-x636.google.com (mail-ej1-x636.google.com
 [IPv6:2a00:1450:4864:20::636])
 by smtp4.osuosl.org (Postfix) with ESMTPS id B8AE34189B
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 16 Feb 2023 11:50:50 +0000 (UTC)
Received: by mail-ej1-x636.google.com with SMTP id a3so4544842ejb.3
 for <bitcoin-dev@lists.linuxfoundation.org>;
 Thu, 16 Feb 2023 03:50:50 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=satoshilabs.com; s=google;
 h=to:subject:message-id:date:from:in-reply-to:references:mime-version
 :from:to:cc:subject:date:message-id:reply-to;
 bh=N1DScCOWLckpLLK+bUIBmkHNvl4UwUYjM/s/KGGVPp8=;
 b=eT/lNaN2Zlgt1zkUqyxIBZPJZRwqtHqV28hKvYvjtC/ALLKe1qafUVkPNxnuWqh/yK
 ND/WmYAgR+OrVEWZDpyJPlIbpY6RZ7fLmzwu/9a6sfWbAJLRdxFP7wESiQK++TRY56t9
 4vf9KtSYpSUaeF3qJ7rJ2bjqfh7ts7MUHZSE2zCb3au7EvaPjWfTLpmEJwW7E/eyxbjp
 ECuTfZweve2SZF/YG22GsmyeFbzt5svksZm0Iw5B6cRxJrwhKKaV+EqfhjoKKNEW/g5o
 PAQaPBmtGNNc5VucyVMC4WyYU4gTw5VgdTuKyKcbY3iMkdta4w8iaukF1ISsif2lubxZ
 0Lrg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20210112;
 h=to:subject:message-id:date:from:in-reply-to:references:mime-version
 :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to;
 bh=N1DScCOWLckpLLK+bUIBmkHNvl4UwUYjM/s/KGGVPp8=;
 b=hIi8ATbZQPLYh95Tg4O4mf0MX0UmoyO3Q748JJJsU/hRg35x7Ar3q4Qq4S1ao4H1WS
 ifAyt5y/3anb6j5QXBMUZ7uUM3iO33GeUvz6mSI35SK9q1YSecYWM7IkRu1oUay4lXBK
 iIbmVlePG/gqz5cg0Po+P2gIXnamGVOIPeBlPvStxoEjLjrt+oazdIo0/XLVojkOpAPi
 XarWTH/qxetBFVkFdMhOBhyO2samB4V6cvk7l2x6/uRFPHJG7QLzvw+0g5p0epJajXZd
 112WIWEEAVhixYE2b9KKXBsZ55DtUmLLE5yNNfXZ+ON/M6kNSAByq0AQbDrnZ5taT+SP
 EuLg==
X-Gm-Message-State: AO0yUKUkpKluJYOITZ+KmVRlgXRyLz5DcUHpHaARve90IHhzzYupT+Zn
 CA+9XtfSJOB0AglJiyl82rBuBgT4cSleuvqqWmIG9g==
X-Google-Smtp-Source: AK7set9i7zg7n6ajfc0Njpx1ec74ssvkLVwVmuD3uDE4jvrrQKJSsEQPpBhNcoWQqSLM5qXiJoKpLu4e9bQc25D5dbA=
X-Received: by 2002:a17:906:c315:b0:877:747d:f11f with SMTP id
 s21-20020a170906c31500b00877747df11fmr2730571ejz.7.1676548248657; Thu, 16 Feb
 2023 03:50:48 -0800 (PST)
MIME-Version: 1.0
References: <CAMZUoKmiwXW50F2onqNUZO8HXQa4+Z=z3s3WyN7-rAMV=KiSgw@mail.gmail.com>
In-Reply-To: <CAMZUoKmiwXW50F2onqNUZO8HXQa4+Z=z3s3WyN7-rAMV=KiSgw@mail.gmail.com>
From: Pavol Rusnak <stick@satoshilabs.com>
Date: Thu, 16 Feb 2023 12:50:12 +0100
Message-ID: <CAF90AvmaRYO6HKn9npyfzO6M6FZnN6DRhqopLpeSnHJNK=5i9g@mail.gmail.com>
To: "Russell O'Connor" <roconnor@blockstream.com>, 
 Bitcoin Protocol Discussion <bitcoin-dev@lists.linuxfoundation.org>
Content-Type: multipart/alternative; boundary="000000000000cf72bd05f4cfce1c"
X-Mailman-Approved-At: Thu, 16 Feb 2023 13:24:37 +0000
Subject: Re: [bitcoin-dev] Codex32
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>, 
 <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Thu, 16 Feb 2023 11:50:55 -0000

--000000000000cf72bd05f4cfce1c
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Hi!

The BIP states that its only advantage over SLIP-0039, which has been used
in production for nearly three years (in at at least 3 SW/HW wallet
implementations), is that it aims to be simple enough for hand computation.
However, the BIP also indicates that "details of hand computation are
outside the scope of this standard, and implementers do not need to be
concerned with this possibility." Therefore, I am curious about how
significant this advantage over SLIP-0039 really is. If hand computation is
not straightforward and there are no other substantial advantages over
SLIP-0039, I cannot help but feel that this BIP is simply a result of
not-invented-here syndrome, but please correct me if I am wrong.

Keep in mind that the encoded shares in SLIP-0039 consist of exactly 200 or
330 bits, both of which are divisible by 5. This makes it straightforward
to encode them as Bech32 strings.

On Thu, 16 Feb 2023 at 09:30, Russell O'Connor via bitcoin-dev <
bitcoin-dev@lists.linuxfoundation.org> wrote:

> I've been asked by Dr. Curr and Professor Snead to forward this message t=
o
> this mailing list, as it may be of general interest to Bitcoin users.
>
> Dear Colleague:
>
> In 1967, during excavation for the construction of a new shopping center
> in
> Monroeville, Pennsylvania, workers uncovered a vault containing a cache o=
f
> ancient scrolls[1].  Most were severely damaged, but those that could be
> recovered confirmed the existence of a secret society long suspected to
> have
> been active in the region around the year 200 BC.
>
> Based on a translation of these documents, we now know that the society,
> the
> Cult of the Bound Variable, was devoted to the careful study of
> computation,
> over two millennia before the invention of the digital computer.
>
> While the Monroeville scrolls make reference to computing machines made o=
f
> sandstone, most researchers believed this to be a poetic metaphor and tha=
t
> the
> "computers" were in fact the initiates themselves, carrying out the
> unimaginably tedious steps of their computations with reed pens on
> parchment.
>
> Within the vault, a collection of sandstone wheels marked in a language
> consisting of 32 glyphs was found. After 15 years of study, we have
> successfully
> completed the translation of what is known as "Codex32," a document that
> describes the functions of the wheels. It was discovered that the wheels
> operate
> a system of cryptographic computations that was used by cult members to
> safeguard their most valuable secrets.
>
> The Codex32 system allows secrets to be carved into multiple tablets and
> scattered to the far corners of the earth. When a sufficient number of
> tablets are
> brought together the stone wheels are manipulated in a manner to recover
> the
> secrets. This finding may be of particular interest to the Bitcoin
> community.
>
> Below we provide a summary of the cult's secret sharing system, which is
> graciously hosted at
> <
> https://github.com/apoelstra/bips/blob/2023-02--volvelles/bip-0000.mediaw=
iki
> >.
> We are requesting a record assignment in the Bibliography of Immemorial
> Philosophy (BIP) repository.
>
> Thank you for your consideration.
>
> Dr. Leon O. Curr and Professor Pearlwort Snead
> Department of Archaeocryptography
> Harry Q. Bovik Institute for the Advancement
>
> [1] http://www.boundvariable.org/task.shtml
>
> -----BEGIN BIP-----
>
> <pre>
>   BIP: ????
>   Layer: Applications
>   Title: codex32
>   Author: Leon Olsson Curr and Pearlwort Sneed <pearlwort@wpsoftware.net>
>   Comments-URI: https://github.com/bitcoin/bips/wiki/Comments:BIP-????
>   Status: Draft
>   Type: ????
>   Created: 2023-02-13
>   License: BSD-3-Clause
>   Post-History: FIXME
> </pre>
>
> =3D=3DIntroduction=3D=3D
>
> =3D=3D=3DAbstract=3D=3D=3D
>
> This document describes a standard for backing up and restoring the maste=
r
> seed of a
> [https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki BIP-0032]
> hierarchical deterministic wallet, using Shamir's secret sharing.
> It includes an encoding format, a BCH error-correcting checksum, and
> algorithms for share generation and secret recovery.
> Secret data can be split into up to 31 shares.
> A minimum threshold of shares, which can be between 1 and 9, is needed to
> recover the secret, whereas without sufficient shares, no information abo=
ut
> the secret is recoverable.
>
> =3D=3D=3DCopyright=3D=3D=3D
>
> This document is licensed under the 3-clause BSD license.
>
> =3D=3D=3DMotivation=3D=3D=3D
>
> BIP-0032 master seed data is the source entropy used to derive all privat=
e
> keys in an HD wallet.
> Safely storing this secret data is the hardest and most important part of
> self-custody.
> However, there is a tension between security, which demands limiting the
> number of backups, and resilience, which demands widely replicated backup=
s.
> Encrypting the seed does not change this fundamental tradeoff, since it
> leaves essentially the same problem of how to back up the encryption key(=
s).
>
> To allow users freedom to make this tradeoff, we use Shamir's secret
> sharing, which guarantees that any number of shares less than the thresho=
ld
> leaks no information about the secret.
> This approach allows increasing safety by widely distributing the
> generated shares, while also providing security against the compromise of
> one or more shares (as long as fewer than the threshold have been
> compromised).
>
> [https://github.com/satoshilabs/slips/blob/master/slip-0039.md SLIP-0039]
> has essentially the same motivations as this standard.
> However, unlike SLIP-0039, this standard also aims to be simple enough fo=
r
> hand computation.
> Users who demand a higher level of security for particular secrets, or
> have a general distrust in digital electronic devices, have the option of
> using hand computation to backup and restore secret data in an
> interoperable manner.
> Note that hand computation is optional, the particular details of hand
> computation are outside the scope of this standard, and implementers do n=
ot
> need to be concerned with this possibility.
>
> [https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki BIP-0039]
> serves the same purpose as this standard: encoding master seeds for stora=
ge
> by users.
> However, BIP-0039 has no error-correcting ability, cannot sensibly be
> extended to support secret sharing, has no support for versioning or othe=
r
> metadata, and has many technical design decisions that make implementatio=
n
> and interoperability difficult (for example, the use of SHA-512 to derive
> seeds, or the use of 11-bit words).
>
> =3D=3DSpecification=3D=3D
>
> =3D=3D=3Dcodex32=3D=3D=3D
>
> A codex32 string is similar to a Bech32 string defined in [
> https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki BIP-0173].
> It reuses the base32 character set from BIP-0173, and consists of:
>
> * A human-readable part, which is the string "ms" (or "MS").
> * A separator, which is always "1".
> * A data part which is in turn subdivided into:
> ** A threshold parameter, which MUST be a single digit between "2" and
> "9", or the digit "0".
> *** If the threshold parameter is "0" then the share index, defined below=
,
> MUST have a value of "s" (or "S").
> ** An identifier consisting of 4 Bech32 characters.
> ** A share index, which is any Bech32 character. Note that a share index
> value of "s" (or "S") is special and denotes the unshared secret (see
> section "Unshared Secret").
> ** A payload which is a sequence of up to 74 Bech32 characters. (However,
> see '''Long codex32 Strings''' below for an exception to this limit.)
> ** A checksum which consists of 13 Bech32 characters as described below.
>
> As with Bech32 strings, a codex32 string MUST be entirely uppercase or
> entirely lowercase.
> The lowercase form is used when determining a character's value for
> checksum purposes.
> For presentation, lowercase is usually preferable, but uppercase SHOULD b=
e
> used for handwritten codex32 strings.
>
> =3D=3D=3DChecksum=3D=3D=3D
>
> The last thirteen characters of the data part form a checksum and contain
> no information.
> Valid strings MUST pass the criteria for validity specified by the Python=
3
> code snippet below.
> The function <code>ms32_verify_checksum</code> must return true when its
> argument is the data part as a list of integers representing the characte=
rs
> converted using the bech32 character table from BIP-0173.
>
> To construct a valid checksum given the data-part characters (excluding
> the checksum), the <code>ms32_create_checksum</code> function can be used=
.
>
> <source lang=3D"python">
> MS32_CONST =3D 0x10ce0795c2fd1e62a
>
> def ms32_polymod(values):
>     GEN =3D [
>         0x19dc500ce73fde210,
>         0x1bfae00def77fe529,
>         0x1fbd920fffe7bee52,
>         0x1739640bdeee3fdad,
>         0x07729a039cfc75f5a,
>     ]
>     residue =3D 0x23181b3
>     for v in values:
>         b =3D (residue >> 60)
>         residue =3D (residue & 0x0fffffffffffffff) << 5 ^ v
>         for i in range(5):
>             residue ^=3D GEN[i] if ((b >> i) & 1) else 0
>     return residue
>
> def ms32_verify_checksum(data):
>     if len(data) >=3D 96:                      # See Long codex32 Strings
>         return ms32_verify_long_checksum(data)
>     if len(data) <=3D 93:
>         return ms32_polymod(data) =3D=3D MS32_CONST
>     return False
>
> def ms32_create_checksum(data):
>     if len(data) > 80:                       # See Long codex32 Strings
>         return ms32_create_long_checksum(data)
>     values =3D data
>     polymod =3D ms32_polymod(values + [0] * 13) ^ MS32_CONST
>     return [(polymod >> 5 * (12 - i)) & 31 for i in range(13)]
> </source>
>
> =3D=3D=3DError Correction=3D=3D=3D
>
> A codex32 string without a valid checksum MUST NOT be used.
> The checksum is designed to be an error correcting code that can correct
> up to 4 character substitutions, up to 8 unreadable characters (called
> erasures), or up to 13 consecutive erasures.
> Implementations SHOULD provide the user with a corrected valid codex32
> string if possible.
> However, implementations SHOULD NOT automatically proceed with a correcte=
d
> codex32 string without user confirmation of the corrected string, either =
by
> prompting the user, or returning a corrected string in an error message a=
nd
> allowing the user to repeat their action.
> We do not specify how an implementation should implement error correction=
.
> However, we recommend that:
>
> * Implementations make suggestions to substitute non-bech32 characters
> with bech32 characters in some situations, such as replacing "B" with "8"=
,
> "O" with "0", "I" with "l", etc.
> * Implementations interpret "?" as an erasure.
> * Implementations optionally interpret other non-bech32 characters, or
> characters with incorrect case, as erasures.
> * If a string with 8 or fewer erasures can have those erasures filled in
> to make a valid codex32 string, then the implementation suggests such a
> string as a correction.
> * If a string consisting of valid Bech32 characters in the proper case ca=
n
> be made valid by substituting 4 or fewer characters, then the
> implementation suggests such a string as a correction.
>
> =3D=3D=3DUnshared Secret=3D=3D=3D
>
> When the share index of a valid codex32 string (converted to lowercase) i=
s
> the letter "s", we call the string a codex32 secret.
> The subsequent data characters in a codex32 secret, excluding the final
> checksum of 13 characters, is a direct encoding of a BIP-0032 HD master
> seed.
>
> The master seed is decoded by converting the data to bytes:
>
> * Translate the characters to 5 bits values using the bech32 character
> table from BIP-0173, most significant bit first.
> * Re-arrange those bits into groups of 8 bits. Any incomplete group at th=
e
> end MUST be 4 bits or less, and is discarded.
>
> Note that unlike the decoding process in BIP-0173, we do NOT require that
> the incomplete group be all zeros.
>
> For an unshared secret, the threshold parameter (the first character of
> the data part) is ignored (beyond the fact it must be a digit for the
> codex32 string to be valid).
> We recommend using the digit "0" for the threshold parameter in this case=
.
> The 4 character identifier also has no effect beyond aiding users in
> distinguishing between multiple different master seeds in cases where the=
y
> have more than one.
>
> =3D=3D=3DRecovering Master Seed=3D=3D=3D
>
> When the share index of a valid codex32 string (converted to lowercase) i=
s
> not the letter "s", we call the string an codex32 share.
> The first character of the data part indicates the threshold of the share=
,
> and it is required to be a non-"0" digit.
>
> In order to recover a master seed, one needs a set of valid codex32 share=
s
> such that:
>
> * All shares have the same threshold value, the same identifier, and the
> same length.
> * All of the share index values are distinct.
> * The number of codex32 shares is exactly equal to the (common) threshold
> value.
>
> If all the above conditions are satisfied, the <code>ms32_recover</code>
> function will return a codex32 secret when its argument is the list of
> codex32 shares with each share represented as a list of integers
> representing the characters converted using the bech32 character table fr=
om
> BIP-0173.
>
> <source lang=3D"python">
> bech32_inv =3D [
>     0, 1, 20, 24, 10, 8, 12, 29, 5, 11, 4, 9, 6, 28, 26, 31,
>     22, 18, 17, 23, 2, 25, 16, 19, 3, 21, 14, 30, 13, 7, 27, 15,
> ]
>
> def bech32_mul(a, b):
>     res =3D 0
>     for i in range(5):
>         res ^=3D a if ((b >> i) & 1) else 0
>         a *=3D 2
>         a ^=3D 41 if (32 <=3D a) else 0
>     return res
>
> def bech32_lagrange(l, x):
>     n =3D 1
>     c =3D []
>     for i in l:
>         n =3D bech32_mul(n, i ^ x)
>         m =3D 1
>         for j in l:
>             m =3D bech32_mul(m, (x if i =3D=3D j else i) ^ j)
>         c.append(m)
>     return [bech32_mul(n, bech32_inv[i]) for i in c]
>
> def ms32_interpolate(l, x):
>     w =3D bech32_lagrange([s[5] for s in l], x)
>     res =3D []
>     for i in range(len(l[0])):
>         n =3D 0
>         for j in range(len(l)):
>             n ^=3D bech32_mul(w[j], l[j][i])
>         res.append(n)
>     return res
>
> def ms32_recover(l):
>     return ms32_interpolate(l, 16)
> </source>
>
> =3D=3D=3DGenerating Shares=3D=3D=3D
>
> If we already have ''t'' valid codex32 strings such that:
>
> * All strings have the same threshold value ''t'', the same identifier,
> and the same length
> * All of the share index values are distinct
>
> Then we can derive additional shares with the
> <code>ms32_interpolate</code> function by passing it a list of exactly
> ''t'' of these codex32 strings, together with a fresh share index distinc=
t
> from all of the existing share indexes.
> The newly derived share will have the provided share index.
>
> Once a user has generated ''n'' codex32 shares, they may discard the
> codex32 secret (if it exists).
> The ''n'' shares form a ''t'' of ''n'' Shamir's secret sharing scheme of =
a
> codex32 secret.
>
> There are two ways to create an initial set of ''t'' valid codex32
> strings, depending on whether the user already has an existing master see=
d
> to split.
>
> =3D=3D=3D=3DFor an existing master seed=3D=3D=3D=3D
>
> Before generating shares for an existing master seed, it first must be
> converted into a codex32 secret, as described above.
> The conversion process consists of:
>
> * Choosing a threshold value ''t'' between 2 and 9, inclusive
> * Choosing a 4 bech32 character identifier
> ** We do not define how to choose the identifier, beyond noting that it
> SHOULD be distinct for every master seed the user may need to disambiguat=
e.
> * Setting the share index to "s"
> * Setting the payload to a Bech32 encoding of the master seed, padded wit=
h
> arbitrary bits
> * Generating a valid checksum in accordance with the Checksum section
>
> Along with the codex32 secret, the user must generate ''t''-1 other
> codex32 shares, each with the same threshold value, the same identifier,
> and a distinct share index.
> The set of share indexes may be chosen arbitrarily.
> The payload of each of these codex32 shares is chosen uniformly at random
> such that it has the same length as the payload of the codex32 secret.
> For each share, a valid checksum must be generated in accordance with the
> Checksum section.
>
> The codex32 secret and the ''t''-1 codex32 shares form a set of ''t''
> valid codex32 strings from which additional shares can be derived as
> described above.
>
> =3D=3D=3D=3DFor a fresh master seed=3D=3D=3D=3D
>
> In the case that the user wishes to generate a fresh master seed, the use=
r
> chooses a threshold value ''t'' and an identifier, then generates ''t''
> random codex32 shares, using the generation procedure from the previous
> section.
> As before, each share must have the same threshold value ''t'', the same
> identifier, and a distinct share index.
>
> With this set of ''t'' codex32 shares, new shares can be derived as
> discussed above. This process generates a fresh master seed, whose value
> can be retrieved by running the recovery process on any ''t'' of these
> shares.
>
> =3D=3D=3DLong codex32 Strings=3D=3D=3D
>
> The 13 character checksum design only supports up to 80 data characters.
> Excluding the threshold, identifier and index characters, this limits the
> payload to 74 characters or 46 bytes.
> While this is enough to support the 32-byte advised size of BIP-0032
> master seeds, BIP-0032 allows seeds to be up to 64 bytes in size.
> We define a long codex32 string format to support these longer seeds by
> defining an alternative checksum.
>
> <source lang=3D"python">
> MS32_LONG_CONST =3D 0x43381e570bf4798ab26
>
> def ms32_long_polymod(values):
>     GEN =3D [
>         0x3d59d273535ea62d897,
>         0x7a9becb6361c6c51507,
>         0x543f9b7e6c38d8a2a0e,
>         0x0c577eaeccf1990d13c,
>         0x1887f74f8dc71b10651,
>     ]
>     residue =3D 0x23181b3
>     for v in values:
>         b =3D (residue >> 70)
>         residue =3D (residue & 0x3fffffffffffffffff) << 5 ^ v
>         for i in range(5):
>             residue ^=3D GEN[i] if ((b >> i) & 1) else 0
>     return residue
>
> def ms32_verify_long_checksum(data):
>     return ms32_long_polymod(data) =3D=3D MS32_LONG_CONST
>
> def ms32_create_long_checksum(data):
>     values =3D data
>     polymod =3D ms32_long_polymod(values + [0] * 15) ^ MS32_LONG_CONST
>     return [(polymod >> 5 * (14 - i)) & 31 for i in range(15)]
> </source>
>
> A long codex32 string follows the same specification as a regular codex32
> string with the following changes.
>
> * The payload is a sequence of between 75 and 103 Bech32 characters.
> * The checksum consists of 15 Bech32 characters as defined above.
>
> A codex32 string with a data part of 94 or 95 characters is never legal a=
s
> a regular codex32 string is limited to 93 data characters and a long
> codex32 string is at least 96 characters.
>
> Generation of long shares and recovery of the master seed from long share=
s
> proceeds in exactly the same way as for regular shares with the
> <code>ms32_interpolate</code> function.
>
> The long checksum is designed to be an error correcting code that can
> correct up to 4 character substitutions, up to 8 unreadable characters
> (called erasures), or up to 15 consecutive erasures.
> As with regular checksums we do not specify how an implementation should
> implement error correction, and all our recommendations for error
> correction of regular codex32 strings also apply to long codex32 strings.
>
> =3D=3DRationale=3D=3D
>
> This scheme is based on the observation that the Lagrange interpolation o=
f
> valid codewords in a BCH code will always be a valid codeword.
> This means that derived shares will always have valid checksum, and a
> sufficient threshold of shares with valid checksums will derive a secret
> with a valid checksum.
>
> The header system is also compatible with Lagrange interpolation, meaning
> all derived shares will have the same identifier and will have the
> appropriate share index.
> This fact allows the header data to be covered by the checksum.
>
> The checksum size and identifier size have been chosen so that the
> encoding of 128-bit seeds and shares fit within 48 characters.
> This is a standard size for many common seed storage formats, which has
> been popularized by the 12 four-letter word format of the BIP-0039 mnemon=
ic.
>
> The 13 character checksum is adequate to correct 4 errors in up to 93
> characters (80 characters of data and 13 characters of the checksum). Thi=
s
> is somewhat better quality than the checksum used in SLIP-0039.
>
> For 256-bit seeds and shares our strings are 74 characters, which fits
> into the 96 character format of the 24 four-letter word format of the
> BIP-0039 mnemonic, with plenty of room to spare.
>
> A longer checksum is needed to support up to 512-bit seeds, the longest
> seed length specified in BIP-0032, as the 13 character checksum isn't
> adequate for more than 80 data characters.
> While we could use the 15 character checksum for both cases, we prefer to
> keep the strings as short as possible for the more common cases of 128-bi=
t
> and 256-bit master seeds.
> We only guarantee to correct 4 characters no matter how long the string i=
s.
> Longer strings mean more chances for transcription errors, so shorter
> strings are better.
>
> The longest data part using the regular 13 character checksum is 93
> characters and corresponds to a 400-bit secret.
> At this length, the prefix <code>MS1</code> is not covered by the checksu=
m.
> This is acceptable because the checksum scheme itself requires you to kno=
w
> that the <code>MS1</code> prefix is being used in the first place.
> If the prefix is damaged and a user is guessing that the data might be
> using this scheme, then the user can enter the available data explicitly
> using the suspected <code>MS1</code> prefix.
>
> =3D=3DBackwards Compatibility=3D=3D
>
> codex32 is an alternative to BIP-0039 and SLIP-0039.
> It is technically possible to derive the BIP32 master seed from seed word=
s
> encoded in one of these schemes, and then to encode this seed in codex32.
> For BIP-0039 this process is irreversible, since it involves hashing the
> original words.
> Furthermore, the resulting seed will be 512 bits long, which may be too
> large to be safely and conveniently handled.
>
> SLIP-0039 seed words can be reversibly converted to master seeds, so it i=
s
> possible to interconvert between SLIP-0039 and codex32.
> However, SLIP-0039 '''shares''' cannot be converted to codex32 shares
> because the two schemes use a different underlying field.
>
> The authors of this BIP do not recommend interconversion.
> Instead, users who wish to switch to codex32 should generate a fresh seed
> and sweep their coins.
>
> =3D=3DReference Implementation=3D=3D
>
> * [https://secretcodex32.com/docs/2023-02-14--bw.ps Reference PostScript
> Implementation]
> * FIXME add Python implementation
> * FIXME add Rust implementation
>
> =3D=3DTest Vectors=3D=3D
>
> =3D=3D=3DTest vector 1=3D=3D=3D
>
> This example shows the codex32 format, when used without splitting the
> secret into any shares.
> The data part contains 26 Bech32 characters, which corresponds to 130
> bits. We truncate the last two bits in order to obtain a 128-bit master
> seed.
>
> codex32 secret (Bech32):
> <code>ms10testsxxxxxxxxxxxxxxxxxxxxxxxxxx4nzvca9cmczlw</code>
>
> Master secret (hex): <code>318c6318c6318c6318c6318c6318c631</code>
>
> * human-readable part: <code>ms</code>
> * separator: <code>1</code>
> * k value: <code>0</code> (no secret splitting)
> * identifier: <code>test</code>
> * share index: <code>s</code> (the secret)
> * data: <code>xxxxxxxxxxxxxxxxxxxxxxxxxx</code>
> * checksum: <code>4nzvca9cmczlw</code>
>
> =3D=3D=3DTest vector 2=3D=3D=3D
>
> This example shows generating a new master seed using "random" codex32
> shares, as well as deriving an additional codex32 share, using ''k''=3D2 =
and
> an identifier of <code>NAME</code>.
> Although codex32 strings are canonically all lowercase, it's also valid t=
o
> use all uppercase.
>
> Share with index <code>A</code>:
> <code>MS12NAMEA320ZYXWVUTSRQPNMLKJHGFEDCAXRPP870HKKQRM</code>
>
> Share with index <code>C</code>:
> <code>MS12NAMECACDEFGHJKLMNPQRSTUVWXYZ023FTR2GDZMPY6PN</code>
>
> * Derived share with index <code>D</code>:
> <code>MS12NAMEDLL4F8JLH4E5VDVULDLFXU2JHDNLSM97XVENRXEG</code>
> * Secret share with index <code>S</code>:
> <code>MS12NAMES6XQGUZTTXKEQNJSJZV4JV3NZ5K3KWGSPHUH6EVW</code>
> * Master secret (hex): <code>d1808e096b35b209ca12132b264662a5</code>
>
> Note that per BIP-0173, the lowercase form is used when determining a
> character's value for checksum purposes.
> In particular, given an all uppercase codex32 string, we still use
> lowercase <code>ms</code> as the human-readable part during checksum
> construction.
>
> =3D=3D=3DTest vector 3=3D=3D=3D
>
> This example shows splitting an existing 128-bit master seed into "random=
"
> codex32 shares, using ''k''=3D3 and an identifier of <code>cash</code>.
> We appended two zero bits in order to obtain 26 Bech32 characters (130
> bits of data) from the 128-bit master seed.
>
> Master secret (hex): <code>ffeeddccbbaa99887766554433221100</code>
>
> Secret share with index <code>s</code>:
> <code>ms13cashsllhdmn9m42vcsamx24zrxgs3qqjzqud4m0d6nln</code>
>
> Share with index <code>a</code>:
> <code>ms13casha320zyxwvutsrqpnmlkjhgfedca2a8d0zehn8a0t</code>
>
> Share with index <code>c</code>:
> <code>ms13cashcacdefghjklmnpqrstuvwxyz023949xq35my48dr</code>
>
> * Derived share with index <code>d</code>:
> <code>ms13cashd0wsedstcdcts64cd7wvy4m90lm28w4ffupqs7rm</code>
> * Derived share with index <code>e</code>:
> <code>ms13casheekgpemxzshcrmqhaydlp6yhms3ws7320xyxsar9</code>
> * Derived share with index <code>f</code>:
> <code>ms13cashf8jh6sdrkpyrsp5ut94pj8ktehhw2hfvyrj48704</code>
>
> Any three of the five shares among <code>acdef</code> can be used to
> recover the secret.
>
> Note that the choice to append two zero bits was arbitrary, and any of th=
e
> following four secret shares would have been valid choices.
> However, each choice would have resulted in a different set of derived
> shares.
>
> * <code>ms13cashsllhdmn9m42vcsamx24zrxgs3qqjzqud4m0d6nln</code>
> * <code>ms13cashsllhdmn9m42vcsamx24zrxgs3qpte35dvzkjpt0r</code>
> * <code>ms13cashsllhdmn9m42vcsamx24zrxgs3qzfatvdwq5692k6</code>
> * <code>ms13cashsllhdmn9m42vcsamx24zrxgs3qrsx6ydhed97jx2</code>
>
> =3D=3D=3DTest vector 4=3D=3D=3D
>
> This example shows converting a 256-bit secret into a codex32 secret,
> without splitting the secret into any shares.
> We appended four zero bits in order to obtain 52 Bech32 characters (260
> bits of data) from the 256-bit secret.
>
> 256-bit secret (hex):
> <code>ffeeddccbbaa99887766554433221100ffeeddccbbaa99887766554433221100</c=
ode>
>
> * codex32 secret:
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqqtum9pg=
v99ycma</code>
>
> Note that the choice to append four zero bits was arbitrary, and any of
> the following sixteen codex32 secrets would have been valid:
>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqqtum9pg=
v99ycma</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqpj82dp3=
4u6lqtd</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqzsrs4pn=
h7jmpj5</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqrfcpap2=
w8dqezy</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqy5tdvph=
n6znrf0</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyq9dsuypw=
2ragmel</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqx05xupv=
gp4v6qx</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyq8k0h5p4=
3c2hzsk</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqgum7hpl=
mjtr8ks</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqf9q0lpx=
zt5clxq</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyq28y48py=
qfuu7le</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqt7ly0pa=
esr8x0f</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqvrvg7pq=
ydv5uyz</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqd6hekpe=
a5n0y5j</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqwcnrwpm=
lkmt9dt</code>
> *
> <code>ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyq0pgjxpz=
x0ysaam</code>
>
> =3D=3D=3DTest vector 5=3D=3D=3D
>
> This example shows generating a new 512-bit master seed using "random"
> codex32 characters and appending a checksum.
> The payload contains 103 Bech32 characters, which corresponds to 515 bits=
.
> The last three bits are discarded when converting to a 512-bit master see=
d.
>
> This is an example of a '''Long codex32 String'''.
>
> * Secret share with index <code>S</code>:
> <code>MS100C8VSM32ZXFGUHPCHTLUPZRY9X8GF2TVDW0S3JN54KHCE6MUA7LQPZYGSFJD6AN=
074RXVCEMLH8WU3TK925ACDEFGHJKLMNPQRSTUVWXY06FHPV80UNDVARHRAK</code>
> * Master secret (hex):
> <code>dc5423251cb87175ff8110c8531d0952d8d73e1194e95b5f19d6f9df7c01111104c=
9baecdfea8cccc677fb9ddc8aec5553b86e528bcadfdcc201c17c638c47e9</code>
>
> =3D=3DAppendix=3D=3D
>
> =3D=3D=3DMathematical Companion=3D=3D=3D
>
> Below we use the Bech32 character set to denote values in GF[32].
> In Bech32, the letter <code>Q</code> denotes zero and the letter
> <code>P</code> denotes one.
> The digits <code>0</code> and <code>2</code> through <code>9</code> do
> ''not'' denote their numeric values.
> They are simply elements of GF[32].
>
> The generating polynomial for our BCH code is as follows.
>
> We extend GF[32] to GF[1024] by adjoining a primitive cube root of unity,
> <code>=CE=B6</code>, satisfying <code>=CE=B6^2 =3D =CE=B6 + P</code>.
>
> We select <code>=CE=B2 :=3D G =CE=B6</code> which has order 93, and const=
ruct the
> product <code>(x - =CE=B2^i)</code> for <code>i</code> in <code>{17, 20, =
46, 49,
> 52, 77, 78, 79, 80, 81, 82, 83, 84}</code>.
> The resulting polynomial is our generating polynomial for our 13 characte=
r
> checksum:
>
>     x^13 + E x^12 + M x^11 + 3 x^10 + G x^9 + Q x^8 + E x^7 + E x^6 + E
> x^5 + L x^4 + M x^3 + C x^2 + S x + S
>
> For our long checksum, we select <code>=CE=B3 :=3D E + X =CE=B6</code>, w=
hich has
> order 1023, and construct the product <code>(x - =CE=B3^i)</code> for
> <code>i</code> in <code>{32, 64, 96, 895, 927, 959, 991, 1019, 1020, 1021=
,
> 1022, 1023, 1024, 1025, 1026}</code>.
> The resulting polynomial is our generating polynomial for our 15 characte=
r
> checksum for long strings:
>
>     x^15 + 0 x^14 + 2 x^13 + E x^12 + 6 x^11 + F x^10 + E x^9 + 4 x^8 + X
> x^7 + H x^6 + 4 x^5 + X x^4 + 9 x^3 + K x^2 + Y x^1 + H
>
> (Reminder: the character <code>0</code> does ''not'' denote the zero of
> the field.)
>
> -----END BIP-----
> _______________________________________________
> bitcoin-dev mailing list
> bitcoin-dev@lists.linuxfoundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev
>


--=20
Best Regards / S pozdravom,

Pavol "Stick" Rusnak
Co-Founder, SatoshiLabs

--000000000000cf72bd05f4cfce1c
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Hi!<div><br></div><div>The BIP states that its only advant=
age over SLIP-0039, which has been used in production for nearly three year=
s (in at at least 3 SW/HW wallet implementations), is that it aims to be si=
mple enough for hand computation. However, the BIP also indicates that &quo=
t;<span style=3D"color:rgb(0,0,0)">details of hand computation are outside =
the scope of this standard, and implementers do not need to be concerned wi=
th this possibility.</span>&quot; Therefore, I am curious about how signifi=
cant this advantage over SLIP-0039 really is. If hand computation is not st=
raightforward and there are no other substantial advantages over SLIP-0039,=
 I cannot help but feel that this BIP is simply a result of not-invented-he=
re syndrome, but please correct me if I am wrong.</div><div><br></div><div>=
Keep in mind=C2=A0that the encoded shares in SLIP-0039 consist of exactly 2=
00 or 330 bits, both of which are divisible by 5. This makes it straightfor=
ward to encode them as Bech32 strings.</div></div><br><div class=3D"gmail_q=
uote"><div dir=3D"ltr" class=3D"gmail_attr">On Thu, 16 Feb 2023 at 09:30, R=
ussell O&#39;Connor via bitcoin-dev &lt;<a href=3D"mailto:bitcoin-dev@lists=
.linuxfoundation.org">bitcoin-dev@lists.linuxfoundation.org</a>&gt; wrote:<=
br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8e=
x;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir=3D"ltr"=
><div id=3D"m_6526893476585381914gmail-magicdomid2"><span>I&#39;ve been ask=
ed by Dr. Curr and Professor Snead to forward this message to=C2=A0</span><=
/div><div id=3D"m_6526893476585381914gmail-magicdomid498"><span>this mailin=
g list, as it may be of general interest to Bitcoin users.=C2=A0</span></di=
v><div id=3D"m_6526893476585381914gmail-magicdomid4"><br></div><div id=3D"m=
_6526893476585381914gmail-magicdomid5"><span>Dear Colleague:=C2=A0</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid6"><br></div><div id=3D=
"m_6526893476585381914gmail-magicdomid7"><span>In 1967, during excavation f=
or the construction of a new shopping center in=C2=A0</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid8"><span>Monroeville, Pennsylvania=
, workers uncovered a vault containing a cache of=C2=A0</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid9"><span>ancient scrolls[1].=C2=A0=
 Most were severely damaged, but those that could be=C2=A0</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid10"><span>recovered confirmed t=
he existence of a secret society long suspected to have=C2=A0</span></div><=
div id=3D"m_6526893476585381914gmail-magicdomid11"><span>been active in the=
 region around the year 200 BC.=C2=A0</span></div><div id=3D"m_652689347658=
5381914gmail-magicdomid12"><br></div><div id=3D"m_6526893476585381914gmail-=
magicdomid13"><span>Based on a translation of these documents, we now know =
that the society, the=C2=A0</span></div><div id=3D"m_6526893476585381914gma=
il-magicdomid14"><span>Cult of the Bound Variable, was devoted to the caref=
ul study of computation,=C2=A0</span></div><div id=3D"m_6526893476585381914=
gmail-magicdomid15"><span>over two millennia before the invention of the di=
gital computer.=C2=A0</span></div><div id=3D"m_6526893476585381914gmail-mag=
icdomid16"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid17"><s=
pan>While the Monroeville scrolls make reference to computing machines made=
 of=C2=A0</span></div><div id=3D"m_6526893476585381914gmail-magicdomid18"><=
span>sandstone, most researchers believed this to be a poetic metaphor and =
that the=C2=A0</span></div><div id=3D"m_6526893476585381914gmail-magicdomid=
19"><span>&quot;computers&quot; were in fact the initiates themselves, carr=
ying out the=C2=A0</span></div><div id=3D"m_6526893476585381914gmail-magicd=
omid20"><span>unimaginably tedious steps of their computations with reed pe=
ns on parchment.=C2=A0</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid506"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid510"=
><span>Within the vault,</span><span> a collection of sandstone wheels mark=
ed in a language=C2=A0</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid515"><span>consisting of 32 glyphs was found. After 15 years of stu=
dy, we have </span><span>successfully</span></div><div id=3D"m_652689347658=
5381914gmail-magicdomid517"><span>completed the translation of what is know=
n as &quot;Codex32</span><span>,</span><span>&quot; a document that</span><=
/div><div id=3D"m_6526893476585381914gmail-magicdomid522"><span>describes t=
he functions of the wheels. </span><span>It was discovered that the</span><=
span> wheels operate</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid525"><span>a system of cryptographic computations that was</span><spa=
n> </span><span>used by cult members to</span></div><div><span>safeguard th=
eir most valuable secrets.</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid27"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid5=
35"><span>The </span><span>C</span><span>odex32 system allows secrets to be=
 carved into multiple tablets and</span></div><div id=3D"m_6526893476585381=
914gmail-magicdomid29"><span>scattered to the far corners of the earth. Whe=
n a sufficient number of tablets are</span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid539"><span>brought together the stone wheels are mani=
pulated in a manner to recover the</span></div><div id=3D"m_652689347658538=
1914gmail-magicdomid541"><span>secrets. </span><span>This finding may be of=
 particular interest to the Bitcoin community.</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid31"><br></div><div id=3D"m_6526893476585381=
914gmail-magicdomid32"><span>Below we provide a summary of the cult&#39;s s=
ecret sharing system, which is</span></div><div><span>graciously hosted at<=
/span></div><div id=3D"m_6526893476585381914gmail-magicdomid33"><span>&lt;<=
/span><span><a href=3D"https://github.com/apoelstra/bips/blob/2023-02--volv=
elles/bip-0000.mediawiki" rel=3D"noreferrer noopener" target=3D"_blank">htt=
ps://github.com/apoelstra/bips/blob/2023-02--volvelles/bip-0000.mediawiki</=
a></span><span>&gt;.</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid34"><span>We are requesting a record assignment in the Bibliography o=
f Immemorial</span></div><div id=3D"m_6526893476585381914gmail-magicdomid35=
"><span>Philosophy (BIP) repository.=C2=A0</span></div><div id=3D"m_6526893=
476585381914gmail-magicdomid36"><br></div><div id=3D"m_6526893476585381914g=
mail-magicdomid37"><span>Thank you for your consideration.</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid38"><br></div><div id=3D"m_6526=
893476585381914gmail-magicdomid39"><span>Dr. Leon O. Curr and Professor Pea=
rlwort Snead=C2=A0</span></div><div id=3D"m_6526893476585381914gmail-magicd=
omid40"><span>Department of Archaeocryptography=C2=A0</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid41"><span>Harry Q. Bovik Institute=
 for the Advancement=C2=A0</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid42"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid4=
3"><span>[1] </span><span><a href=3D"http://www.boundvariable.org/task.shtm=
l" rel=3D"noreferrer noopener" target=3D"_blank">http://www.boundvariable.o=
rg/task.shtml</a></span></div><div id=3D"m_6526893476585381914gmail-magicdo=
mid44"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid45"><span>=
-----BEGIN BIP-----</span></div><div id=3D"m_6526893476585381914gmail-magic=
domid46"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid47"><spa=
n>&lt;pre&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid4=
8"><span>=C2=A0 BIP: ????</span></div><div id=3D"m_6526893476585381914gmail=
-magicdomid49"><span>=C2=A0 Layer: Applications</span></div><div id=3D"m_65=
26893476585381914gmail-magicdomid50"><span>=C2=A0 Title: codex32</span></di=
v><div id=3D"m_6526893476585381914gmail-magicdomid51"><span>=C2=A0 Author: =
Leon Olsson Curr and Pearlwort Sneed &lt;<a href=3D"mailto:pearlwort@wpsoft=
ware.net" target=3D"_blank">pearlwort@wpsoftware.net</a>&gt;</span></div><d=
iv id=3D"m_6526893476585381914gmail-magicdomid52"><span>=C2=A0 Comments-URI=
: </span><span><a href=3D"https://github.com/bitcoin/bips/wiki/Comments:BIP=
-????" rel=3D"noreferrer noopener" target=3D"_blank">https://github.com/bit=
coin/bips/wiki/Comments:BIP-????</a></span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid53"><span>=C2=A0 Status: Draft</span></div><div id=3D=
"m_6526893476585381914gmail-magicdomid54"><span>=C2=A0 Type: ????</span></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid55"><span>=C2=A0 Created=
: 2023-02-13</span></div><div id=3D"m_6526893476585381914gmail-magicdomid56=
"><span>=C2=A0 License: BSD-3-Clause</span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid57"><span>=C2=A0 Post-History: FIXME</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid58"><span>&lt;/pre&gt;</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid59"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid60"><span>=3D=3DIntroduction=3D=3D=
</span></div><div id=3D"m_6526893476585381914gmail-magicdomid61"><br></div>=
<div id=3D"m_6526893476585381914gmail-magicdomid62"><span>=3D=3D=3DAbstract=
=3D=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-magicdomid63"><=
br></div><div id=3D"m_6526893476585381914gmail-magicdomid64"><span>This doc=
ument describes a standard for backing up and restoring the master seed of =
a</span></div><div id=3D"m_6526893476585381914gmail-magicdomid65"><span>[</=
span><span><a href=3D"https://github.com/bitcoin/bips/blob/master/bip-0032.=
mediawiki" rel=3D"noreferrer noopener" target=3D"_blank">https://github.com=
/bitcoin/bips/blob/master/bip-0032.mediawiki</a></span><span> BIP-0032] hie=
rarchical deterministic wallet, using Shamir&#39;s secret sharing.</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid66"><span>It includes a=
n encoding format, a BCH error-correcting checksum, and algorithms for shar=
e generation and secret recovery.</span></div><div id=3D"m_6526893476585381=
914gmail-magicdomid67"><span>Secret data can be split into up to 31 shares.=
</span></div><div id=3D"m_6526893476585381914gmail-magicdomid68"><span>A mi=
nimum threshold of shares, which can be between 1 and 9, is needed to recov=
er the secret, whereas without sufficient shares, no information about the =
secret is recoverable.</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid69"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid70"><=
span>=3D=3D=3DCopyright=3D=3D=3D</span></div><div id=3D"m_65268934765853819=
14gmail-magicdomid71"><br></div><div id=3D"m_6526893476585381914gmail-magic=
domid72"><span>This document is licensed under the 3-clause BSD license.</s=
pan></div><div id=3D"m_6526893476585381914gmail-magicdomid73"><br></div><di=
v id=3D"m_6526893476585381914gmail-magicdomid74"><span>=3D=3D=3DMotivation=
=3D=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-magicdomid75"><=
br></div><div id=3D"m_6526893476585381914gmail-magicdomid76"><span>BIP-0032=
 master seed data is the source entropy used to derive all private keys in =
an HD wallet.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid7=
7"><span>Safely storing this secret data is the hardest and most important =
part of self-custody.</span></div><div id=3D"m_6526893476585381914gmail-mag=
icdomid78"><span>However, there is a tension between security, which demand=
s limiting the number of backups, and resilience, which demands widely repl=
icated backups.</span></div><div id=3D"m_6526893476585381914gmail-magicdomi=
d79"><span>Encrypting the seed does not change this fundamental tradeoff, s=
ince it leaves essentially the same problem of how to back up the encryptio=
n key(s).</span></div><div id=3D"m_6526893476585381914gmail-magicdomid80"><=
br></div><div id=3D"m_6526893476585381914gmail-magicdomid81"><span>To allow=
 users freedom to make this tradeoff, we use Shamir&#39;s secret sharing, w=
hich guarantees that any number of shares less than the threshold leaks no =
information about the secret.</span></div><div id=3D"m_6526893476585381914g=
mail-magicdomid82"><span>This approach allows increasing safety by widely d=
istributing the generated shares, while also providing security against the=
 compromise of one or more shares (as long as fewer than the threshold have=
 been compromised).</span></div><div id=3D"m_6526893476585381914gmail-magic=
domid83"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid84"><spa=
n>[</span><span><a href=3D"https://github.com/satoshilabs/slips/blob/master=
/slip-0039.md" rel=3D"noreferrer noopener" target=3D"_blank">https://github=
.com/satoshilabs/slips/blob/master/slip-0039.md</a></span><span> SLIP-0039]=
 has essentially the same motivations as this standard.</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid85"><span>However, unlike SLIP-003=
9, this standard also aims to be simple enough for hand computation.</span>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid86"><span>Users who d=
emand a higher level of security for particular secrets, or have a general =
distrust in digital electronic devices, have the option of using hand compu=
tation to backup and restore secret data in an interoperable manner.</span>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid87"><span>Note that h=
and computation is optional, the particular details of hand computation are=
 outside the scope of this standard, and implementers do not need to be con=
cerned with this possibility.</span></div><div id=3D"m_6526893476585381914g=
mail-magicdomid88"><br></div><div id=3D"m_6526893476585381914gmail-magicdom=
id89"><span>[</span><span><a href=3D"https://github.com/bitcoin/bips/blob/m=
aster/bip-0039.mediawiki" rel=3D"noreferrer noopener" target=3D"_blank">htt=
ps://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki</a></span><span=
> BIP-0039] serves the same purpose as this standard: encoding master seeds=
 for storage by users.</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid90"><span>However, BIP-0039 has no error-correcting ability, cannot=
 sensibly be extended to support secret sharing, has no support for version=
ing or other metadata, and has many technical design decisions that make im=
plementation and interoperability difficult (for example, the use of SHA-51=
2 to derive seeds, or the use of 11-bit words).</span></div><div id=3D"m_65=
26893476585381914gmail-magicdomid91"><br></div><div id=3D"m_652689347658538=
1914gmail-magicdomid92"><span>=3D=3DSpecification=3D=3D</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid93"><br></div><div id=3D"m_6526893=
476585381914gmail-magicdomid94"><span>=3D=3D=3Dcodex32=3D=3D=3D</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid95"><br></div><div id=3D"m=
_6526893476585381914gmail-magicdomid96"><span>A codex32 string is similar t=
o a Bech32 string defined in [</span><span><a href=3D"https://github.com/bi=
tcoin/bips/blob/master/bip-0173.mediawiki" rel=3D"noreferrer noopener" targ=
et=3D"_blank">https://github.com/bitcoin/bips/blob/master/bip-0173.mediawik=
i</a></span><span> BIP-0173].</span></div><div id=3D"m_6526893476585381914g=
mail-magicdomid97"><span>It reuses the base32 character set from BIP-0173, =
and consists of:</span></div><div id=3D"m_6526893476585381914gmail-magicdom=
id98"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid99"><span>*=
 A human-readable part, which is the string &quot;ms&quot; (or &quot;MS&quo=
t;).</span></div><div id=3D"m_6526893476585381914gmail-magicdomid100"><span=
>* A separator, which is always &quot;1&quot;.</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid101"><span>* A data part which is in turn s=
ubdivided into:</span></div><div id=3D"m_6526893476585381914gmail-magicdomi=
d102"><span>** A threshold parameter, which MUST be a single digit between =
&quot;2&quot; and &quot;9&quot;, or the digit &quot;0&quot;.</span></div><d=
iv id=3D"m_6526893476585381914gmail-magicdomid103"><span>*** If the thresho=
ld parameter is &quot;0&quot; then the share index, defined below, MUST hav=
e a value of &quot;s&quot; (or &quot;S&quot;).</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid104"><span>** An identifier consisting of 4=
 Bech32 characters.</span></div><div id=3D"m_6526893476585381914gmail-magic=
domid105"><span>** A share index, which is any Bech32 character. Note that =
a share index value of &quot;s&quot; (or &quot;S&quot;) is special and deno=
tes the unshared secret (see section &quot;Unshared Secret&quot;).</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid106"><span>** A payload=
 which is a sequence of up to 74 Bech32 characters. (However, see &#39;&#39=
;&#39;Long codex32 Strings&#39;&#39;&#39; below for an exception to this li=
mit.)</span></div><div id=3D"m_6526893476585381914gmail-magicdomid107"><spa=
n>** A checksum which consists of 13 Bech32 characters as described below.<=
/span></div><div id=3D"m_6526893476585381914gmail-magicdomid108"><br></div>=
<div id=3D"m_6526893476585381914gmail-magicdomid109"><span>As with Bech32 s=
trings, a codex32 string MUST be entirely uppercase or entirely lowercase.<=
/span></div><div id=3D"m_6526893476585381914gmail-magicdomid110"><span>The =
lowercase form is used when determining a character&#39;s value for checksu=
m purposes.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid111=
"><span>For presentation, lowercase is usually preferable, but uppercase SH=
OULD be used for handwritten codex32 strings.</span></div><div id=3D"m_6526=
893476585381914gmail-magicdomid112"><br></div><div id=3D"m_6526893476585381=
914gmail-magicdomid113"><span>=3D=3D=3DChecksum=3D=3D=3D</span></div><div i=
d=3D"m_6526893476585381914gmail-magicdomid114"><br></div><div id=3D"m_65268=
93476585381914gmail-magicdomid115"><span>The last thirteen characters of th=
e data part form a checksum and contain no information.</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid116"><span>Valid strings MUST pass=
 the criteria for validity specified by the Python3 code snippet below.</sp=
an></div><div id=3D"m_6526893476585381914gmail-magicdomid117"><span>The fun=
ction &lt;code&gt;ms32_verify_checksum&lt;/code&gt; must return true when i=
ts argument is the data part as a list of integers representing the charact=
ers converted using the bech32 character table from BIP-0173.</span></div><=
div id=3D"m_6526893476585381914gmail-magicdomid118"><br></div><div id=3D"m_=
6526893476585381914gmail-magicdomid119"><span>To construct a valid checksum=
 given the data-part characters (excluding the checksum), the &lt;code&gt;m=
s32_create_checksum&lt;/code&gt; function can be used.</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid120"><br></div><div id=3D"m_652689=
3476585381914gmail-magicdomid121"><span>&lt;source lang=3D&quot;python&quot=
;&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid122"><spa=
n>MS32_CONST =3D 0x10ce0795c2fd1e62a</span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid123"><br></div><div id=3D"m_6526893476585381914gmail-=
magicdomid124"><span>def ms32_polymod(values):</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid125"><span>=C2=A0=C2=A0=C2=A0 GEN =3D [</sp=
an></div><div id=3D"m_6526893476585381914gmail-magicdomid126"><span>=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 0x19dc500ce73fde210,</span></div><div =
id=3D"m_6526893476585381914gmail-magicdomid127"><span>=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0 0x1bfae00def77fe529,</span></div><div id=3D"m_6526893=
476585381914gmail-magicdomid128"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0 0x1fbd920fffe7bee52,</span></div><div id=3D"m_6526893476585381914gma=
il-magicdomid129"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 0x173964=
0bdeee3fdad,</span></div><div id=3D"m_6526893476585381914gmail-magicdomid13=
0"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 0x07729a039cfc75f5a,</s=
pan></div><div id=3D"m_6526893476585381914gmail-magicdomid131"><span>=C2=A0=
=C2=A0=C2=A0 ]</span></div><div id=3D"m_6526893476585381914gmail-magicdomid=
132"><span>=C2=A0=C2=A0=C2=A0 residue =3D 0x23181b3</span></div><div id=3D"=
m_6526893476585381914gmail-magicdomid133"><span>=C2=A0=C2=A0=C2=A0 for v in=
 values:</span></div><div id=3D"m_6526893476585381914gmail-magicdomid134"><=
span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 b =3D (residue &gt;&gt; 60)=
</span></div><div id=3D"m_6526893476585381914gmail-magicdomid135"><span>=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 residue =3D (residue &amp; 0x0fffff=
ffffffffff) &lt;&lt; 5 ^ v</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid136"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 for i in =
range(5):</span></div><div id=3D"m_6526893476585381914gmail-magicdomid137">=
<span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 re=
sidue ^=3D GEN[i] if ((b &gt;&gt; i) &amp; 1) else 0</span></div><div id=3D=
"m_6526893476585381914gmail-magicdomid138"><span>=C2=A0=C2=A0=C2=A0 return =
residue</span></div><div id=3D"m_6526893476585381914gmail-magicdomid139"><b=
r></div><div id=3D"m_6526893476585381914gmail-magicdomid140"><span>def ms32=
_verify_checksum(data):</span></div><div id=3D"m_6526893476585381914gmail-m=
agicdomid141"><span>=C2=A0=C2=A0=C2=A0 if len(data) &gt;=3D 96:=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 # See Long codex32 Strings</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid142"><span>=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 return ms32_verify_long_checksum(data)</span=
></div><div id=3D"m_6526893476585381914gmail-magicdomid143"><span>=C2=A0=C2=
=A0=C2=A0 if len(data) &lt;=3D 93:</span></div><div id=3D"m_652689347658538=
1914gmail-magicdomid144"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 r=
eturn ms32_polymod(data) =3D=3D MS32_CONST</span></div><div id=3D"m_6526893=
476585381914gmail-magicdomid145"><span>=C2=A0=C2=A0=C2=A0 return False</spa=
n></div><div id=3D"m_6526893476585381914gmail-magicdomid146"><br></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid147"><span>def ms32_create_chec=
ksum(data):</span></div><div id=3D"m_6526893476585381914gmail-magicdomid148=
"><span>=C2=A0=C2=A0=C2=A0 if len(data) &gt; 80:=C2=A0=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 # See Long codex32 Strings</span></div><div =
id=3D"m_6526893476585381914gmail-magicdomid149"><span>=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0 return ms32_create_long_checksum(data)</span></div><d=
iv id=3D"m_6526893476585381914gmail-magicdomid150"><span>=C2=A0=C2=A0=C2=A0=
 values =3D data</span></div><div id=3D"m_6526893476585381914gmail-magicdom=
id151"><span>=C2=A0=C2=A0=C2=A0 polymod =3D ms32_polymod(values + [0] * 13)=
 ^ MS32_CONST</span></div><div id=3D"m_6526893476585381914gmail-magicdomid1=
52"><span>=C2=A0=C2=A0=C2=A0 return [(polymod &gt;&gt; 5 * (12 - i)) &amp; =
31 for i in range(13)]</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid153"><span>&lt;/source&gt;</span></div><div id=3D"m_652689347658538=
1914gmail-magicdomid154"><br></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid155"><span>=3D=3D=3DError Correction=3D=3D=3D</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid156"><br></div><div id=3D"m_652689=
3476585381914gmail-magicdomid157"><span>A codex32 string without a valid ch=
ecksum MUST NOT be used.</span></div><div id=3D"m_6526893476585381914gmail-=
magicdomid158"><span>The checksum is designed to be an error correcting cod=
e that can correct up to 4 character substitutions, up to 8 unreadable char=
acters (called erasures), or up to 13 consecutive erasures.</span></div><di=
v id=3D"m_6526893476585381914gmail-magicdomid159"><span>Implementations SHO=
ULD provide the user with a corrected valid codex32 string if possible.</sp=
an></div><div id=3D"m_6526893476585381914gmail-magicdomid160"><span>However=
, implementations SHOULD NOT automatically proceed with a corrected codex32=
 string without user confirmation of the corrected string, either by prompt=
ing the user, or returning a corrected string in an error message and allow=
ing the user to repeat their action.</span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid161"><span>We do not specify how an implementation sh=
ould implement error correction. However, we recommend that:</span></div><d=
iv id=3D"m_6526893476585381914gmail-magicdomid162"><br></div><div id=3D"m_6=
526893476585381914gmail-magicdomid163"><span>* Implementations make suggest=
ions to substitute non-bech32 characters with bech32 characters in some sit=
uations, such as replacing &quot;B&quot; with &quot;8&quot;, &quot;O&quot; =
with &quot;0&quot;, &quot;I&quot; with &quot;l&quot;, etc.</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid164"><span>* Implementations in=
terpret &quot;?&quot; as an erasure.</span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid165"><span>* Implementations optionally interpret oth=
er non-bech32 characters, or characters with incorrect case, as erasures.</=
span></div><div id=3D"m_6526893476585381914gmail-magicdomid166"><span>* If =
a string with 8 or fewer erasures can have those erasures filled in to make=
 a valid codex32 string, then the implementation suggests such a string as =
a correction.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid1=
67"><span>* If a string consisting of valid Bech32 characters in the proper=
 case can be made valid by substituting 4 or fewer characters, then the imp=
lementation suggests such a string as a correction.</span></div><div id=3D"=
m_6526893476585381914gmail-magicdomid168"><br></div><div id=3D"m_6526893476=
585381914gmail-magicdomid169"><span>=3D=3D=3DUnshared Secret=3D=3D=3D</span=
></div><div id=3D"m_6526893476585381914gmail-magicdomid170"><br></div><div =
id=3D"m_6526893476585381914gmail-magicdomid171"><span>When the share index =
of a valid codex32 string (converted to lowercase) is the letter &quot;s&qu=
ot;, we call the string a codex32 secret.</span></div><div id=3D"m_65268934=
76585381914gmail-magicdomid172"><span>The subsequent data characters in a c=
odex32 secret, excluding the final checksum of 13 characters, is a direct e=
ncoding of a BIP-0032 HD master seed.</span></div><div id=3D"m_652689347658=
5381914gmail-magicdomid173"><br></div><div id=3D"m_6526893476585381914gmail=
-magicdomid174"><span>The master seed is decoded by converting the data to =
bytes:</span></div><div id=3D"m_6526893476585381914gmail-magicdomid175"><br=
></div><div id=3D"m_6526893476585381914gmail-magicdomid176"><span>* Transla=
te the characters to 5 bits values using the bech32 character table from BI=
P-0173, most significant bit first.</span></div><div id=3D"m_65268934765853=
81914gmail-magicdomid177"><span>* Re-arrange those bits into groups of 8 bi=
ts. Any incomplete group at the end MUST be 4 bits or less, and is discarde=
d.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid178"><br></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid179"><span>Note that unl=
ike the decoding process in BIP-0173, we do NOT require that the incomplete=
 group be all zeros.</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid180"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid181"><=
span>For an unshared secret, the threshold parameter (the first character o=
f the data part) is ignored (beyond the fact it must be a digit for the cod=
ex32 string to be valid).</span></div><div id=3D"m_6526893476585381914gmail=
-magicdomid182"><span>We recommend using the digit &quot;0&quot; for the th=
reshold parameter in this case.</span></div><div id=3D"m_652689347658538191=
4gmail-magicdomid183"><span>The 4 character identifier also has no effect b=
eyond aiding users in distinguishing between multiple different master seed=
s in cases where they have more than one.</span></div><div id=3D"m_65268934=
76585381914gmail-magicdomid184"><br></div><div id=3D"m_6526893476585381914g=
mail-magicdomid185"><span>=3D=3D=3DRecovering Master Seed=3D=3D=3D</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid186"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid187"><span>When the share index of=
 a valid codex32 string (converted to lowercase) is not the letter &quot;s&=
quot;, we call the string an codex32 share.</span></div><div id=3D"m_652689=
3476585381914gmail-magicdomid188"><span>The first character of the data par=
t indicates the threshold of the share, and it is required to be a non-&quo=
t;0&quot; digit.</span></div><div id=3D"m_6526893476585381914gmail-magicdom=
id189"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid190"><span=
>In order to recover a master seed, one needs a set of valid codex32 shares=
 such that:</span></div><div id=3D"m_6526893476585381914gmail-magicdomid191=
"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid192"><span>* Al=
l shares have the same threshold value, the same identifier, and the same l=
ength.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid193"><sp=
an>* All of the share index values are distinct.</span></div><div id=3D"m_6=
526893476585381914gmail-magicdomid194"><span>* The number of codex32 shares=
 is exactly equal to the (common) threshold value.</span></div><div id=3D"m=
_6526893476585381914gmail-magicdomid195"><br></div><div id=3D"m_65268934765=
85381914gmail-magicdomid196"><span>If all the above conditions are satisfie=
d, the &lt;code&gt;ms32_recover&lt;/code&gt; function will return a codex32=
 secret when its argument is the list of codex32 shares with each share rep=
resented as a list of integers representing the characters converted using =
the bech32 character table from BIP-0173.</span></div><div id=3D"m_65268934=
76585381914gmail-magicdomid197"><br></div><div id=3D"m_6526893476585381914g=
mail-magicdomid198"><span>&lt;source lang=3D&quot;python&quot;&gt;</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid199"><span>bech32_inv =
=3D [</span></div><div id=3D"m_6526893476585381914gmail-magicdomid200"><spa=
n>=C2=A0=C2=A0=C2=A0 0, 1, 20, 24, 10, 8, 12, 29, 5, 11, 4, 9, 6, 28, 26, 3=
1,</span></div><div id=3D"m_6526893476585381914gmail-magicdomid201"><span>=
=C2=A0=C2=A0=C2=A0 22, 18, 17, 23, 2, 25, 16, 19, 3, 21, 14, 30, 13, 7, 27,=
 15,</span></div><div id=3D"m_6526893476585381914gmail-magicdomid202"><span=
>]</span></div><div id=3D"m_6526893476585381914gmail-magicdomid203"><br></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid204"><span>def bech32_mu=
l(a, b):</span></div><div id=3D"m_6526893476585381914gmail-magicdomid205"><=
span>=C2=A0=C2=A0=C2=A0 res =3D 0</span></div><div id=3D"m_6526893476585381=
914gmail-magicdomid206"><span>=C2=A0=C2=A0=C2=A0 for i in range(5):</span><=
/div><div id=3D"m_6526893476585381914gmail-magicdomid207"><span>=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 res ^=3D a if ((b &gt;&gt; i) &amp; 1) el=
se 0</span></div><div id=3D"m_6526893476585381914gmail-magicdomid208"><span=
>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 a *=3D 2</span></div><div id=3D=
"m_6526893476585381914gmail-magicdomid209"><span>=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0 a ^=3D 41 if (32 &lt;=3D a) else 0</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid210"><span>=C2=A0=C2=A0=C2=A0 retu=
rn res</span></div><div id=3D"m_6526893476585381914gmail-magicdomid211"><br=
></div><div id=3D"m_6526893476585381914gmail-magicdomid212"><span>def bech3=
2_lagrange(l, x):</span></div><div id=3D"m_6526893476585381914gmail-magicdo=
mid213"><span>=C2=A0=C2=A0=C2=A0 n =3D 1</span></div><div id=3D"m_652689347=
6585381914gmail-magicdomid214"><span>=C2=A0=C2=A0=C2=A0 c =3D []</span></di=
v><div id=3D"m_6526893476585381914gmail-magicdomid215"><span>=C2=A0=C2=A0=
=C2=A0 for i in l:</span></div><div id=3D"m_6526893476585381914gmail-magicd=
omid216"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 n =3D bech32_mul(=
n, i ^ x)</span></div><div id=3D"m_6526893476585381914gmail-magicdomid217">=
<span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 m =3D 1</span></div><div i=
d=3D"m_6526893476585381914gmail-magicdomid218"><span>=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0 for j in l:</span></div><div id=3D"m_6526893476585381=
914gmail-magicdomid219"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0 m =3D bech32_mul(m, (x if i =3D=3D j else i) ^ j)</sp=
an></div><div id=3D"m_6526893476585381914gmail-magicdomid220"><span>=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 c.append(m)</span></div><div id=3D"m_6=
526893476585381914gmail-magicdomid221"><span>=C2=A0=C2=A0=C2=A0 return [bec=
h32_mul(n, bech32_inv[i]) for i in c]</span></div><div id=3D"m_652689347658=
5381914gmail-magicdomid222"><br></div><div id=3D"m_6526893476585381914gmail=
-magicdomid223"><span>def ms32_interpolate(l, x):</span></div><div id=3D"m_=
6526893476585381914gmail-magicdomid224"><span>=C2=A0=C2=A0=C2=A0 w =3D bech=
32_lagrange([s[5] for s in l], x)</span></div><div id=3D"m_6526893476585381=
914gmail-magicdomid225"><span>=C2=A0=C2=A0=C2=A0 res =3D []</span></div><di=
v id=3D"m_6526893476585381914gmail-magicdomid226"><span>=C2=A0=C2=A0=C2=A0 =
for i in range(len(l[0])):</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid227"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 n =3D 0</=
span></div><div id=3D"m_6526893476585381914gmail-magicdomid228"><span>=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 for j in range(len(l)):</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid229"><span>=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 n ^=3D bech32_mul(w[j],=
 l[j][i])</span></div><div id=3D"m_6526893476585381914gmail-magicdomid230">=
<span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 res.append(n)</span></div>=
<div id=3D"m_6526893476585381914gmail-magicdomid231"><span>=C2=A0=C2=A0=C2=
=A0 return res</span></div><div id=3D"m_6526893476585381914gmail-magicdomid=
232"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid233"><span>d=
ef ms32_recover(l):</span></div><div id=3D"m_6526893476585381914gmail-magic=
domid234"><span>=C2=A0=C2=A0=C2=A0 return ms32_interpolate(l, 16)</span></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid235"><span>&lt;/source&g=
t;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid236"><br></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid237"><span>=3D=3D=3DGene=
rating Shares=3D=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid238"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid239"=
><span>If we already have &#39;&#39;t&#39;&#39; valid codex32 strings such =
that:</span></div><div id=3D"m_6526893476585381914gmail-magicdomid240"><br>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid241"><span>* All stri=
ngs have the same threshold value &#39;&#39;t&#39;&#39;, the same identifie=
r, and the same length</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid242"><span>* All of the share index values are distinct</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid243"><br></div><div id=3D"=
m_6526893476585381914gmail-magicdomid244"><span>Then we can derive addition=
al shares with the &lt;code&gt;ms32_interpolate&lt;/code&gt; function by pa=
ssing it a list of exactly &#39;&#39;t&#39;&#39; of these codex32 strings, =
together with a fresh share index distinct from all of the existing share i=
ndexes.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid245"><s=
pan>The newly derived share will have the provided share index.</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid246"><br></div><div id=3D"=
m_6526893476585381914gmail-magicdomid247"><span>Once a user has generated &=
#39;&#39;n&#39;&#39; codex32 shares, they may discard the codex32 secret (i=
f it exists).</span></div><div id=3D"m_6526893476585381914gmail-magicdomid2=
48"><span>The &#39;&#39;n&#39;&#39; shares form a &#39;&#39;t&#39;&#39; of =
&#39;&#39;n&#39;&#39; Shamir&#39;s secret sharing scheme of a codex32 secre=
t.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid249"><br></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid250"><span>There are two=
 ways to create an initial set of &#39;&#39;t&#39;&#39; valid codex32 strin=
gs, depending on whether the user already has an existing master seed to sp=
lit.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid251"><br><=
/div><div id=3D"m_6526893476585381914gmail-magicdomid252"><span>=3D=3D=3D=
=3DFor an existing master seed=3D=3D=3D=3D</span></div><div id=3D"m_6526893=
476585381914gmail-magicdomid253"><br></div><div id=3D"m_6526893476585381914=
gmail-magicdomid254"><span>Before generating shares for an existing master =
seed, it first must be converted into a codex32 secret, as described above.=
</span></div><div id=3D"m_6526893476585381914gmail-magicdomid255"><span>The=
 conversion process consists of:</span></div><div id=3D"m_65268934765853819=
14gmail-magicdomid256"><br></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid257"><span>* Choosing a threshold value &#39;&#39;t&#39;&#39; between=
 2 and 9, inclusive</span></div><div id=3D"m_6526893476585381914gmail-magic=
domid258"><span>* Choosing a 4 bech32 character identifier</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid259"><span>** We do not define =
how to choose the identifier, beyond noting that it SHOULD be distinct for =
every master seed the user may need to disambiguate.</span></div><div id=3D=
"m_6526893476585381914gmail-magicdomid260"><span>* Setting the share index =
to &quot;s&quot;</span></div><div id=3D"m_6526893476585381914gmail-magicdom=
id261"><span>* Setting the payload to a Bech32 encoding of the master seed,=
 padded with arbitrary bits</span></div><div id=3D"m_6526893476585381914gma=
il-magicdomid262"><span>* Generating a valid checksum in accordance with th=
e Checksum section</span></div><div id=3D"m_6526893476585381914gmail-magicd=
omid263"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid264"><sp=
an>Along with the codex32 secret, the user must generate &#39;&#39;t&#39;&#=
39;-1 other codex32 shares, each with the same threshold value, the same id=
entifier, and a distinct share index.</span></div><div id=3D"m_652689347658=
5381914gmail-magicdomid265"><span>The set of share indexes may be chosen ar=
bitrarily.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid266"=
><span>The payload of each of these codex32 shares is chosen uniformly at r=
andom such that it has the same length as the payload of the codex32 secret=
.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid267"><span>Fo=
r each share, a valid checksum must be generated in accordance with the Che=
cksum section.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid=
268"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid269"><span>T=
he codex32 secret and the &#39;&#39;t&#39;&#39;-1 codex32 shares form a set=
 of &#39;&#39;t&#39;&#39; valid codex32 strings from which additional share=
s can be derived as described above.</span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid270"><br></div><div id=3D"m_6526893476585381914gmail-=
magicdomid271"><span>=3D=3D=3D=3DFor a fresh master seed=3D=3D=3D=3D</span>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid272"><br></div><div i=
d=3D"m_6526893476585381914gmail-magicdomid273"><span>In the case that the u=
ser wishes to generate a fresh master seed, the user chooses a threshold va=
lue &#39;&#39;t&#39;&#39; and an identifier, then generates &#39;&#39;t&#39=
;&#39; random codex32 shares, using the generation procedure from the previ=
ous section.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid27=
4"><span>As before, each share must have the same threshold value &#39;&#39=
;t&#39;&#39;, the same identifier, and a distinct share index.</span></div>=
<div id=3D"m_6526893476585381914gmail-magicdomid275"><br></div><div id=3D"m=
_6526893476585381914gmail-magicdomid276"><span>With this set of &#39;&#39;t=
&#39;&#39; codex32 shares, new shares can be derived as discussed above. Th=
is process generates a fresh master seed, whose value can be retrieved by r=
unning the recovery process on any &#39;&#39;t&#39;&#39; of these shares.</=
span></div><div id=3D"m_6526893476585381914gmail-magicdomid277"><br></div><=
div id=3D"m_6526893476585381914gmail-magicdomid278"><span>=3D=3D=3DLong cod=
ex32 Strings=3D=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-mag=
icdomid279"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid280">=
<span>The 13 character checksum design only supports up to 80 data characte=
rs.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid281"><span>=
Excluding the threshold, identifier and index characters, this limits the p=
ayload to 74 characters or 46 bytes.</span></div><div id=3D"m_6526893476585=
381914gmail-magicdomid282"><span>While this is enough to support the 32-byt=
e advised size of BIP-0032 master seeds, BIP-0032 allows seeds to be up to =
64 bytes in size.</span></div><div id=3D"m_6526893476585381914gmail-magicdo=
mid283"><span>We define a long codex32 string format to support these longe=
r seeds by defining an alternative checksum.</span></div><div id=3D"m_65268=
93476585381914gmail-magicdomid284"><br></div><div id=3D"m_65268934765853819=
14gmail-magicdomid285"><span>&lt;source lang=3D&quot;python&quot;&gt;</span=
></div><div id=3D"m_6526893476585381914gmail-magicdomid286"><span>MS32_LONG=
_CONST =3D 0x43381e570bf4798ab26</span></div><div id=3D"m_65268934765853819=
14gmail-magicdomid287"><br></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid288"><span>def ms32_long_polymod(values):</span></div><div id=3D"m_65=
26893476585381914gmail-magicdomid289"><span>=C2=A0=C2=A0=C2=A0 GEN =3D [</s=
pan></div><div id=3D"m_6526893476585381914gmail-magicdomid290"><span>=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 0x3d59d273535ea62d897,</span></div><di=
v id=3D"m_6526893476585381914gmail-magicdomid291"><span>=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0 0x7a9becb6361c6c51507,</span></div><div id=3D"m_65=
26893476585381914gmail-magicdomid292"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0 0x543f9b7e6c38d8a2a0e,</span></div><div id=3D"m_65268934765853=
81914gmail-magicdomid293"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 =
0x0c577eaeccf1990d13c,</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid294"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 0x1887f74f8dc=
71b10651,</span></div><div id=3D"m_6526893476585381914gmail-magicdomid295">=
<span>=C2=A0=C2=A0=C2=A0 ]</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid296"><span>=C2=A0=C2=A0=C2=A0 residue =3D 0x23181b3</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid297"><span>=C2=A0=C2=A0=C2=
=A0 for v in values:</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid298"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 b =3D (residue =
&gt;&gt; 70)</span></div><div id=3D"m_6526893476585381914gmail-magicdomid29=
9"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 residue =3D (residue &a=
mp; 0x3fffffffffffffffff) &lt;&lt; 5 ^ v</span></div><div id=3D"m_652689347=
6585381914gmail-magicdomid300"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=
=C2=A0 for i in range(5):</span></div><div id=3D"m_6526893476585381914gmail=
-magicdomid301"><span>=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=
=A0=C2=A0=C2=A0 residue ^=3D GEN[i] if ((b &gt;&gt; i) &amp; 1) else 0</spa=
n></div><div id=3D"m_6526893476585381914gmail-magicdomid302"><span>=C2=A0=
=C2=A0=C2=A0 return residue</span></div><div id=3D"m_6526893476585381914gma=
il-magicdomid303"><br></div><div id=3D"m_6526893476585381914gmail-magicdomi=
d304"><span>def ms32_verify_long_checksum(data):</span></div><div id=3D"m_6=
526893476585381914gmail-magicdomid305"><span>=C2=A0=C2=A0=C2=A0 return ms32=
_long_polymod(data) =3D=3D MS32_LONG_CONST</span></div><div id=3D"m_6526893=
476585381914gmail-magicdomid306"><br></div><div id=3D"m_6526893476585381914=
gmail-magicdomid307"><span>def ms32_create_long_checksum(data):</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid308"><span>=C2=A0=C2=A0=C2=
=A0 values =3D data</span></div><div id=3D"m_6526893476585381914gmail-magic=
domid309"><span>=C2=A0=C2=A0=C2=A0 polymod =3D ms32_long_polymod(values + [=
0] * 15) ^ MS32_LONG_CONST</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid310"><span>=C2=A0=C2=A0=C2=A0 return [(polymod &gt;&gt; 5 * (14=
 - i)) &amp; 31 for i in range(15)]</span></div><div id=3D"m_65268934765853=
81914gmail-magicdomid311"><span>&lt;/source&gt;</span></div><div id=3D"m_65=
26893476585381914gmail-magicdomid312"><br></div><div id=3D"m_65268934765853=
81914gmail-magicdomid313"><span>A long codex32 string follows the same spec=
ification as a regular codex32 string with the following changes.</span></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid314"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid315"><span>* The payload is a sequ=
ence of between 75 and 103 Bech32 characters.</span></div><div id=3D"m_6526=
893476585381914gmail-magicdomid316"><span>* The checksum consists of 15 Bec=
h32 characters as defined above.</span></div><div id=3D"m_65268934765853819=
14gmail-magicdomid317"><br></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid318"><span>A codex32 string with a data part of 94 or 95 characters i=
s never legal as a regular codex32 string is limited to 93 data characters =
and a long codex32 string is at least 96 characters.</span></div><div id=3D=
"m_6526893476585381914gmail-magicdomid319"><br></div><div id=3D"m_652689347=
6585381914gmail-magicdomid320"><span>Generation of long shares and recovery=
 of the master seed from long shares proceeds in exactly the same way as fo=
r regular shares with the &lt;code&gt;ms32_interpolate&lt;/code&gt; functio=
n.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid321"><br></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid322"><span>The long chec=
ksum is designed to be an error correcting code that can correct up to 4 ch=
aracter substitutions, up to 8 unreadable characters (called erasures), or =
up to 15 consecutive erasures.</span></div><div id=3D"m_6526893476585381914=
gmail-magicdomid323"><span>As with regular checksums we do not specify how =
an implementation should implement error correction, and all our recommenda=
tions for error correction of regular codex32 strings also apply to long co=
dex32 strings.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid=
324"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid325"><span>=
=3D=3DRationale=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-mag=
icdomid326"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid327">=
<span>This scheme is based on the observation that the Lagrange interpolati=
on of valid codewords in a BCH code will always be a valid codeword.</span>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid328"><span>This means=
 that derived shares will always have valid checksum, and a sufficient thre=
shold of shares with valid checksums will derive a secret with a valid chec=
ksum.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid329"><br>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid330"><span>The header=
 system is also compatible with Lagrange interpolation, meaning all derived=
 shares will have the same identifier and will have the appropriate share i=
ndex.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid331"><spa=
n>This fact allows the header data to be covered by the checksum.</span></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid332"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid333"><span>The checksum size and i=
dentifier size have been chosen so that the encoding of 128-bit seeds and s=
hares fit within 48 characters.</span></div><div id=3D"m_652689347658538191=
4gmail-magicdomid334"><span>This is a standard size for many common seed st=
orage formats, which has been popularized by the 12 four-letter word format=
 of the BIP-0039 mnemonic.</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid335"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid=
336"><span>The 13 character checksum is adequate to correct 4 errors in up =
to 93 characters (80 characters of data and 13 characters of the checksum).=
 This is somewhat better quality than the checksum used in SLIP-0039.</span=
></div><div id=3D"m_6526893476585381914gmail-magicdomid337"><br></div><div =
id=3D"m_6526893476585381914gmail-magicdomid338"><span>For 256-bit seeds and=
 shares our strings are 74 characters, which fits into the 96 character for=
mat of the 24 four-letter word format of the BIP-0039 mnemonic, with plenty=
 of room to spare.</span></div><div id=3D"m_6526893476585381914gmail-magicd=
omid339"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid340"><sp=
an>A longer checksum is needed to support up to 512-bit seeds, the longest =
seed length specified in BIP-0032, as the 13 character checksum isn&#39;t a=
dequate for more than 80 data characters.</span></div><div id=3D"m_65268934=
76585381914gmail-magicdomid341"><span>While we could use the 15 character c=
hecksum for both cases, we prefer to keep the strings as short as possible =
for the more common cases of 128-bit and 256-bit master seeds.</span></div>=
<div id=3D"m_6526893476585381914gmail-magicdomid342"><span>We only guarante=
e to correct 4 characters no matter how long the string is.</span></div><di=
v id=3D"m_6526893476585381914gmail-magicdomid343"><span>Longer strings mean=
 more chances for transcription errors, so shorter strings are better.</spa=
n></div><div id=3D"m_6526893476585381914gmail-magicdomid344"><br></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid345"><span>The longest data par=
t using the regular 13 character checksum is 93 characters and corresponds =
to a 400-bit secret.</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid346"><span>At this length, the prefix &lt;code&gt;MS1&lt;/code&gt; is=
 not covered by the checksum.</span></div><div id=3D"m_6526893476585381914g=
mail-magicdomid347"><span>This is acceptable because the checksum scheme it=
self requires you to know that the &lt;code&gt;MS1&lt;/code&gt; prefix is b=
eing used in the first place.</span></div><div id=3D"m_6526893476585381914g=
mail-magicdomid348"><span>If the prefix is damaged and a user is guessing t=
hat the data might be using this scheme, then the user can enter the availa=
ble data explicitly using the suspected &lt;code&gt;MS1&lt;/code&gt; prefix=
.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid349"><br></di=
v><div id=3D"m_6526893476585381914gmail-magicdomid350"><span>=3D=3DBackward=
s Compatibility=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-mag=
icdomid351"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid352">=
<span>codex32 is an alternative to BIP-0039 and SLIP-0039.</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid353"><span>It is technically po=
ssible to derive the BIP32 master seed from seed words encoded in one of th=
ese schemes, and then to encode this seed in codex32.</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid354"><span>For BIP-0039 this proce=
ss is irreversible, since it involves hashing the original words.</span></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid355"><span>Furthermore, =
the resulting seed will be 512 bits long, which may be too large to be safe=
ly and conveniently handled.</span></div><div id=3D"m_6526893476585381914gm=
ail-magicdomid356"><br></div><div id=3D"m_6526893476585381914gmail-magicdom=
id357"><span>SLIP-0039 seed words can be reversibly converted to master see=
ds, so it is possible to interconvert between SLIP-0039 and codex32.</span>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid358"><span>However, S=
LIP-0039 &#39;&#39;&#39;shares&#39;&#39;&#39; cannot be converted to codex3=
2 shares because the two schemes use a different underlying field.</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid359"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid360"><span>The authors of this BIP=
 do not recommend interconversion.</span></div><div id=3D"m_652689347658538=
1914gmail-magicdomid361"><span>Instead, users who wish to switch to codex32=
 should generate a fresh seed and sweep their coins.</span></div><div id=3D=
"m_6526893476585381914gmail-magicdomid362"><br></div><div id=3D"m_652689347=
6585381914gmail-magicdomid363"><span>=3D=3DReference Implementation=3D=3D</=
span></div><div id=3D"m_6526893476585381914gmail-magicdomid364"><br></div><=
div id=3D"m_6526893476585381914gmail-magicdomid365"><span>* [</span><span><=
a href=3D"https://secretcodex32.com/docs/2023-02-14--bw.ps" rel=3D"noreferr=
er noopener" target=3D"_blank">https://secretcodex32.com/docs/2023-02-14--b=
w.ps</a></span><span> Reference PostScript Implementation]</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid366"><span>* FIXME add Python i=
mplementation</span></div><div id=3D"m_6526893476585381914gmail-magicdomid3=
67"><span>* FIXME add Rust implementation</span></div><div id=3D"m_65268934=
76585381914gmail-magicdomid368"><br></div><div id=3D"m_6526893476585381914g=
mail-magicdomid369"><span>=3D=3DTest Vectors=3D=3D</span></div><div id=3D"m=
_6526893476585381914gmail-magicdomid370"><br></div><div id=3D"m_65268934765=
85381914gmail-magicdomid371"><span>=3D=3D=3DTest vector 1=3D=3D=3D</span></=
div><div id=3D"m_6526893476585381914gmail-magicdomid372"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid373"><span>This example shows the =
codex32 format, when used without splitting the secret into any shares.</sp=
an></div><div id=3D"m_6526893476585381914gmail-magicdomid374"><span>The dat=
a part contains 26 Bech32 characters, which corresponds to 130 bits. We tru=
ncate the last two bits in order to obtain a 128-bit master seed.</span></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid375"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid376"><span>codex32 secret (Bech32)=
: &lt;code&gt;ms10testsxxxxxxxxxxxxxxxxxxxxxxxxxx4nzvca9cmczlw&lt;/code&gt;=
</span></div><div id=3D"m_6526893476585381914gmail-magicdomid377"><br></div=
><div id=3D"m_6526893476585381914gmail-magicdomid378"><span>Master secret (=
hex): &lt;code&gt;318c6318c6318c6318c6318c6318c631&lt;/code&gt;</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid379"><br></div><div id=3D"=
m_6526893476585381914gmail-magicdomid380"><span>* human-readable part: &lt;=
code&gt;ms&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-m=
agicdomid381"><span>* separator: &lt;code&gt;1&lt;/code&gt;</span></div><di=
v id=3D"m_6526893476585381914gmail-magicdomid382"><span>* k value: &lt;code=
&gt;0&lt;/code&gt; (no secret splitting)</span></div><div id=3D"m_652689347=
6585381914gmail-magicdomid383"><span>* identifier: &lt;code&gt;test&lt;/cod=
e&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid384"><spa=
n>* share index: &lt;code&gt;s&lt;/code&gt; (the secret)</span></div><div i=
d=3D"m_6526893476585381914gmail-magicdomid385"><span>* data: &lt;code&gt;xx=
xxxxxxxxxxxxxxxxxxxxxxxx&lt;/code&gt;</span></div><div id=3D"m_652689347658=
5381914gmail-magicdomid386"><span>* checksum: &lt;code&gt;4nzvca9cmczlw&lt;=
/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid387">=
<br></div><div id=3D"m_6526893476585381914gmail-magicdomid388"><span>=3D=3D=
=3DTest vector 2=3D=3D=3D</span></div><div id=3D"m_6526893476585381914gmail=
-magicdomid389"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid3=
90"><span>This example shows generating a new master seed using &quot;rando=
m&quot; codex32 shares, as well as deriving an additional codex32 share, us=
ing &#39;&#39;k&#39;&#39;=3D2 and an identifier of &lt;code&gt;NAME&lt;/cod=
e&gt;.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid391"><sp=
an>Although codex32 strings are canonically all lowercase, it&#39;s also va=
lid to use all uppercase.</span></div><div id=3D"m_6526893476585381914gmail=
-magicdomid392"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid3=
93"><span>Share with index &lt;code&gt;A&lt;/code&gt;: &lt;code&gt;MS12NAME=
A320ZYXWVUTSRQPNMLKJHGFEDCAXRPP870HKKQRM&lt;/code&gt;</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid394"><br></div><div id=3D"m_652689=
3476585381914gmail-magicdomid395"><span>Share with index &lt;code&gt;C&lt;/=
code&gt;: &lt;code&gt;MS12NAMECACDEFGHJKLMNPQRSTUVWXYZ023FTR2GDZMPY6PN&lt;/=
code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid396"><=
br></div><div id=3D"m_6526893476585381914gmail-magicdomid397"><span>* Deriv=
ed share with index &lt;code&gt;D&lt;/code&gt;: &lt;code&gt;MS12NAMEDLL4F8J=
LH4E5VDVULDLFXU2JHDNLSM97XVENRXEG&lt;/code&gt;</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid398"><span>* Secret share with index &lt;co=
de&gt;S&lt;/code&gt;: &lt;code&gt;MS12NAMES6XQGUZTTXKEQNJSJZV4JV3NZ5K3KWGSP=
HUH6EVW&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid399"><span>* Master secret (hex): &lt;code&gt;d1808e096b35b209ca12132=
b264662a5&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-ma=
gicdomid400"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid401"=
><span>Note that per BIP-0173, the lowercase form is used when determining =
a character&#39;s value for checksum purposes.</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid402"><span>In particular, given an all uppe=
rcase codex32 string, we still use lowercase &lt;code&gt;ms&lt;/code&gt; as=
 the human-readable part during checksum construction.</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid403"><br></div><div id=3D"m_652689=
3476585381914gmail-magicdomid404"><span>=3D=3D=3DTest vector 3=3D=3D=3D</sp=
an></div><div id=3D"m_6526893476585381914gmail-magicdomid405"><br></div><di=
v id=3D"m_6526893476585381914gmail-magicdomid406"><span>This example shows =
splitting an existing 128-bit master seed into &quot;random&quot; codex32 s=
hares, using &#39;&#39;k&#39;&#39;=3D3 and an identifier of &lt;code&gt;cas=
h&lt;/code&gt;.</span></div><div id=3D"m_6526893476585381914gmail-magicdomi=
d407"><span>We appended two zero bits in order to obtain 26 Bech32 characte=
rs (130 bits of data) from the 128-bit master seed.</span></div><div id=3D"=
m_6526893476585381914gmail-magicdomid408"><br></div><div id=3D"m_6526893476=
585381914gmail-magicdomid409"><span>Master secret (hex): &lt;code&gt;ffeedd=
ccbbaa99887766554433221100&lt;/code&gt;</span></div><div id=3D"m_6526893476=
585381914gmail-magicdomid410"><br></div><div id=3D"m_6526893476585381914gma=
il-magicdomid411"><span>Secret share with index &lt;code&gt;s&lt;/code&gt;:=
 &lt;code&gt;ms13cashsllhdmn9m42vcsamx24zrxgs3qqjzqud4m0d6nln&lt;/code&gt;<=
/span></div><div id=3D"m_6526893476585381914gmail-magicdomid412"><br></div>=
<div id=3D"m_6526893476585381914gmail-magicdomid413"><span>Share with index=
 &lt;code&gt;a&lt;/code&gt;: &lt;code&gt;ms13casha320zyxwvutsrqpnmlkjhgfedc=
a2a8d0zehn8a0t&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gma=
il-magicdomid414"><br></div><div id=3D"m_6526893476585381914gmail-magicdomi=
d415"><span>Share with index &lt;code&gt;c&lt;/code&gt;: &lt;code&gt;ms13ca=
shcacdefghjklmnpqrstuvwxyz023949xq35my48dr&lt;/code&gt;</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid416"><br></div><div id=3D"m_652689=
3476585381914gmail-magicdomid417"><span>* Derived share with index &lt;code=
&gt;d&lt;/code&gt;: &lt;code&gt;ms13cashd0wsedstcdcts64cd7wvy4m90lm28w4ffup=
qs7rm&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicd=
omid418"><span>* Derived share with index &lt;code&gt;e&lt;/code&gt;: &lt;c=
ode&gt;ms13casheekgpemxzshcrmqhaydlp6yhms3ws7320xyxsar9&lt;/code&gt;</span>=
</div><div id=3D"m_6526893476585381914gmail-magicdomid419"><span>* Derived =
share with index &lt;code&gt;f&lt;/code&gt;: &lt;code&gt;ms13cashf8jh6sdrkp=
yrsp5ut94pj8ktehhw2hfvyrj48704&lt;/code&gt;</span></div><div id=3D"m_652689=
3476585381914gmail-magicdomid420"><br></div><div id=3D"m_652689347658538191=
4gmail-magicdomid421"><span>Any three of the five shares among &lt;code&gt;=
acdef&lt;/code&gt; can be used to recover the secret.</span></div><div id=
=3D"m_6526893476585381914gmail-magicdomid422"><br></div><div id=3D"m_652689=
3476585381914gmail-magicdomid423"><span>Note that the choice to append two =
zero bits was arbitrary, and any of the following four secret shares would =
have been valid choices.</span></div><div id=3D"m_6526893476585381914gmail-=
magicdomid424"><span>However, each choice would have resulted in a differen=
t set of derived shares.</span></div><div id=3D"m_6526893476585381914gmail-=
magicdomid425"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid42=
6"><span>* &lt;code&gt;ms13cashsllhdmn9m42vcsamx24zrxgs3qqjzqud4m0d6nln&lt;=
/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid427">=
<span>* &lt;code&gt;ms13cashsllhdmn9m42vcsamx24zrxgs3qpte35dvzkjpt0r&lt;/co=
de&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid428"><sp=
an>* &lt;code&gt;ms13cashsllhdmn9m42vcsamx24zrxgs3qzfatvdwq5692k6&lt;/code&=
gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid429"><span>=
* &lt;code&gt;ms13cashsllhdmn9m42vcsamx24zrxgs3qrsx6ydhed97jx2&lt;/code&gt;=
</span></div><div id=3D"m_6526893476585381914gmail-magicdomid430"><br></div=
><div id=3D"m_6526893476585381914gmail-magicdomid431"><span>=3D=3D=3DTest v=
ector 4=3D=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-magicdom=
id432"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid433"><span=
>This example shows converting a 256-bit secret into a codex32 secret, with=
out splitting the secret into any shares.</span></div><div id=3D"m_65268934=
76585381914gmail-magicdomid434"><span>We appended four zero bits in order t=
o obtain 52 Bech32 characters (260 bits of data) from the 256-bit secret.</=
span></div><div id=3D"m_6526893476585381914gmail-magicdomid435"><br></div><=
div id=3D"m_6526893476585381914gmail-magicdomid436"><span>256-bit secret (h=
ex): &lt;code&gt;ffeeddccbbaa99887766554433221100ffeeddccbbaa99887766554433=
221100&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magic=
domid437"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid438"><s=
pan>* codex32 secret: &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwv=
hw4fnzrhve25gvezzyqqtum9pgv99ycma&lt;/code&gt;</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid439"><br></div><div id=3D"m_652689347658538=
1914gmail-magicdomid440"><span>Note that the choice to append four zero bit=
s was arbitrary, and any of the following sixteen codex32 secrets would hav=
e been valid:</span></div><div id=3D"m_6526893476585381914gmail-magicdomid4=
41"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid442"><span>* =
&lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqqtu=
m9pgv99ycma&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-=
magicdomid443"><span>* &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahw=
vhw4fnzrhve25gvezzyqpj82dp34u6lqtd&lt;/code&gt;</span></div><div id=3D"m_65=
26893476585381914gmail-magicdomid444"><span>* &lt;code&gt;ms10leetsllhdmn9m=
42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqzsrs4pnh7jmpj5&lt;/code&gt;</spa=
n></div><div id=3D"m_6526893476585381914gmail-magicdomid445"><span>* &lt;co=
de&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqrfcpap2w8=
dqezy&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicd=
omid446"><span>* &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fn=
zrhve25gvezzyqy5tdvphn6znrf0&lt;/code&gt;</span></div><div id=3D"m_65268934=
76585381914gmail-magicdomid447"><span>* &lt;code&gt;ms10leetsllhdmn9m42vcsa=
mx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyq9dsuypw2ragmel&lt;/code&gt;</span></di=
v><div id=3D"m_6526893476585381914gmail-magicdomid448"><span>* &lt;code&gt;=
ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqx05xupvgp4v6qx&=
lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid44=
9"><span>* &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve2=
5gvezzyq8k0h5p43c2hzsk&lt;/code&gt;</span></div><div id=3D"m_65268934765853=
81914gmail-magicdomid450"><span>* &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zr=
xgs3qrl7ahwvhw4fnzrhve25gvezzyqgum7hplmjtr8ks&lt;/code&gt;</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid451"><span>* &lt;code&gt;ms10le=
etsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqf9q0lpxzt5clxq&lt;/co=
de&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomid452"><sp=
an>* &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezz=
yq28y48pyqfuu7le&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914g=
mail-magicdomid453"><span>* &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qr=
l7ahwvhw4fnzrhve25gvezzyqt7ly0paesr8x0f&lt;/code&gt;</span></div><div id=3D=
"m_6526893476585381914gmail-magicdomid454"><span>* &lt;code&gt;ms10leetsllh=
dmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqvrvg7pqydv5uyz&lt;/code&gt;=
</span></div><div id=3D"m_6526893476585381914gmail-magicdomid455"><span>* &=
lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyqd6he=
kpea5n0y5j&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-m=
agicdomid456"><span>* &lt;code&gt;ms10leetsllhdmn9m42vcsamx24zrxgs3qrl7ahwv=
hw4fnzrhve25gvezzyqwcnrwpmlkmt9dt&lt;/code&gt;</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid457"><span>* &lt;code&gt;ms10leetsllhdmn9m4=
2vcsamx24zrxgs3qrl7ahwvhw4fnzrhve25gvezzyq0pgjxpzx0ysaam&lt;/code&gt;</span=
></div><div id=3D"m_6526893476585381914gmail-magicdomid458"><br></div><div =
id=3D"m_6526893476585381914gmail-magicdomid459"><span>=3D=3D=3DTest vector =
5=3D=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-magicdomid460"=
><br></div><div id=3D"m_6526893476585381914gmail-magicdomid461"><span>This =
example shows generating a new 512-bit master seed using &quot;random&quot;=
 codex32 characters and appending a checksum.</span></div><div id=3D"m_6526=
893476585381914gmail-magicdomid462"><span>The payload contains 103 Bech32 c=
haracters, which corresponds to 515 bits. The last three bits are discarded=
 when converting to a 512-bit master seed.</span></div><div id=3D"m_6526893=
476585381914gmail-magicdomid463"><br></div><div id=3D"m_6526893476585381914=
gmail-magicdomid464"><span>This is an example of a &#39;&#39;&#39;Long code=
x32 String&#39;&#39;&#39;.</span></div><div id=3D"m_6526893476585381914gmai=
l-magicdomid465"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid=
466"><span>* Secret share with index &lt;code&gt;S&lt;/code&gt;: &lt;code&g=
t;MS100C8VSM32ZXFGUHPCHTLUPZRY9X8GF2TVDW0S3JN54KHCE6MUA7LQPZYGSFJD6AN074RXV=
CEMLH8WU3TK925ACDEFGHJKLMNPQRSTUVWXY06FHPV80UNDVARHRAK&lt;/code&gt;</span><=
/div><div id=3D"m_6526893476585381914gmail-magicdomid467"><span>* Master se=
cret (hex): &lt;code&gt;dc5423251cb87175ff8110c8531d0952d8d73e1194e95b5f19d=
6f9df7c01111104c9baecdfea8cccc677fb9ddc8aec5553b86e528bcadfdcc201c17c638c47=
e9&lt;/code&gt;</span></div><div id=3D"m_6526893476585381914gmail-magicdomi=
d468"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid469"><span>=
=3D=3DAppendix=3D=3D</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid470"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid471"><=
span>=3D=3D=3DMathematical Companion=3D=3D=3D</span></div><div id=3D"m_6526=
893476585381914gmail-magicdomid472"><br></div><div id=3D"m_6526893476585381=
914gmail-magicdomid473"><span>Below we use the Bech32 character set to deno=
te values in GF[32].</span></div><div id=3D"m_6526893476585381914gmail-magi=
cdomid474"><span>In Bech32, the letter &lt;code&gt;Q&lt;/code&gt; denotes z=
ero and the letter &lt;code&gt;P&lt;/code&gt; denotes one.</span></div><div=
 id=3D"m_6526893476585381914gmail-magicdomid475"><span>The digits &lt;code&=
gt;0&lt;/code&gt; and &lt;code&gt;2&lt;/code&gt; through &lt;code&gt;9&lt;/=
code&gt; do &#39;&#39;not&#39;&#39; denote their numeric values.</span></di=
v><div id=3D"m_6526893476585381914gmail-magicdomid476"><span>They are simpl=
y elements of GF[32].</span></div><div id=3D"m_6526893476585381914gmail-mag=
icdomid477"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid478">=
<span>The generating polynomial for our BCH code is as follows.</span></div=
><div id=3D"m_6526893476585381914gmail-magicdomid479"><br></div><div id=3D"=
m_6526893476585381914gmail-magicdomid480"><span>We extend GF[32] to GF[1024=
] by adjoining a primitive cube root of unity, &lt;code&gt;=CE=B6&lt;/code&=
gt;, satisfying &lt;code&gt;=CE=B6^2 =3D =CE=B6 + P&lt;/code&gt;.</span></d=
iv><div id=3D"m_6526893476585381914gmail-magicdomid481"><br></div><div id=
=3D"m_6526893476585381914gmail-magicdomid482"><span>We select &lt;code&gt;=
=CE=B2 :=3D G =CE=B6&lt;/code&gt; which has order 93, and construct the pro=
duct &lt;code&gt;(x - =CE=B2^i)&lt;/code&gt; for &lt;code&gt;i&lt;/code&gt;=
 in &lt;code&gt;{17, 20, 46, 49, 52, 77, 78, 79, 80, 81, 82, 83, 84}&lt;/co=
de&gt;.</span></div><div id=3D"m_6526893476585381914gmail-magicdomid483"><s=
pan>The resulting polynomial is our generating polynomial for our 13 charac=
ter checksum:</span></div><div id=3D"m_6526893476585381914gmail-magicdomid4=
84"><br></div><div id=3D"m_6526893476585381914gmail-magicdomid485"><span>=
=C2=A0=C2=A0=C2=A0 x^13 + E x^12 + M x^11 + 3 x^10 + G x^9 + Q x^8 + E x^7 =
+ E x^6 + E x^5 + L x^4 + M x^3 + C x^2 + S x + S</span></div><div id=3D"m_=
6526893476585381914gmail-magicdomid486"><br></div><div id=3D"m_652689347658=
5381914gmail-magicdomid487"><span>For our long checksum, we select &lt;code=
&gt;=CE=B3 :=3D E + X =CE=B6&lt;/code&gt;, which has order 1023, and constr=
uct the product &lt;code&gt;(x - =CE=B3^i)&lt;/code&gt; for &lt;code&gt;i&l=
t;/code&gt; in &lt;code&gt;{32, 64, 96, 895, 927, 959, 991, 1019, 1020, 102=
1, 1022, 1023, 1024, 1025, 1026}&lt;/code&gt;.</span></div><div id=3D"m_652=
6893476585381914gmail-magicdomid488"><span>The resulting polynomial is our =
generating polynomial for our 15 character checksum for long strings:</span=
></div><div id=3D"m_6526893476585381914gmail-magicdomid489"><br></div><div =
id=3D"m_6526893476585381914gmail-magicdomid490"><span>=C2=A0=C2=A0=C2=A0 x^=
15 + 0 x^14 + 2 x^13 + E x^12 + 6 x^11 + F x^10 + E x^9 + 4 x^8 + X x^7 + H=
 x^6 + 4 x^5 + X x^4 + 9 x^3 + K x^2 + Y x^1 + H</span></div><div id=3D"m_6=
526893476585381914gmail-magicdomid491"><br></div><div id=3D"m_6526893476585=
381914gmail-magicdomid492"><span>(Reminder: the character &lt;code&gt;0&lt;=
/code&gt; does &#39;&#39;not&#39;&#39; denote the zero of the field.)</span=
></div><div id=3D"m_6526893476585381914gmail-magicdomid493"><br></div><div =
id=3D"m_6526893476585381914gmail-magicdomid494"><span>-----END BIP-----</sp=
an></div></div>
_______________________________________________<br>
bitcoin-dev mailing list<br>
<a href=3D"mailto:bitcoin-dev@lists.linuxfoundation.org" target=3D"_blank">=
bitcoin-dev@lists.linuxfoundation.org</a><br>
<a href=3D"https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev" =
rel=3D"noreferrer" target=3D"_blank">https://lists.linuxfoundation.org/mail=
man/listinfo/bitcoin-dev</a><br>
</blockquote></div><br clear=3D"all"><div><br></div>-- <br><div dir=3D"ltr"=
 class=3D"gmail_signature"><div dir=3D"ltr"><div><div dir=3D"ltr"><div></di=
v><div>Best Regards / S pozdravom,</div><div><br></div><div>Pavol &quot;Sti=
ck&quot; Rusnak</div><div>Co-Founder, SatoshiLabs</div></div></div></div></=
div>

--000000000000cf72bd05f4cfce1c--