summaryrefslogtreecommitdiff
path: root/02/23629000677ff6ebee4523815b910d4841b5c6
blob: 01816a2f86290888dd389da344d52aacc56ab7de (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
Delivery-date: Fri, 12 Jul 2024 18:44:36 -0700
Received: from mail-yb1-f183.google.com ([209.85.219.183])
	by mail.fairlystable.org with esmtps  (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
	(Exim 4.94.2)
	(envelope-from <bitcoindev+bncBC3PT7FYWAMRB6NXY62AMGQE4FSSI2I@googlegroups.com>)
	id 1sSRoQ-00010H-PU
	for bitcoindev@gnusha.org; Fri, 12 Jul 2024 18:44:36 -0700
Received: by mail-yb1-f183.google.com with SMTP id 3f1490d57ef6-e03a59172dbsf4275328276.3
        for <bitcoindev@gnusha.org>; Fri, 12 Jul 2024 18:44:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=googlegroups.com; s=20230601; t=1720835067; x=1721439867; darn=gnusha.org;
        h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
         :list-id:mailing-list:precedence:x-original-sender:mime-version
         :subject:references:in-reply-to:message-id:to:from:date:sender:from
         :to:cc:subject:date:message-id:reply-to;
        bh=EmDsrXP4v9cpCFupBuBiY780M8VNv3o3VvWQ/BZlFuM=;
        b=fGNcQNd1/iw9mDBw1P7mxOKP+/Spjn7NvR1WLlq52e1ZgQQwud0XZt9b/qtr+2Z0wz
         ZxknRhY6AoZCMIKrjDzal0QR+UmgAciuskvPb19By0gTzIjjRa0+EgUYTx4z3G/IknAe
         I++V4TqjJ/Ss4d4conMGeOZUIZDf+iO1FGTecgmQerf29sDMRgYlji6dL7npAaqVNOLd
         fOd6D7QHpDDAbjm4Dfmu25ZYVoDPht2bN/eJv9DEeyiuk5NHDq/46YmhVfUP0VvXb7oP
         vXOOwal/JNGiHDxevARjWcXOdgci3qdxx0d+vNd3RCrY12gZ30JRhcWGeS0DBHW3bsnO
         Y1cA==
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20230601; t=1720835067; x=1721439867; darn=gnusha.org;
        h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
         :list-id:mailing-list:precedence:x-original-sender:mime-version
         :subject:references:in-reply-to:message-id:to:from:date:from:to:cc
         :subject:date:message-id:reply-to;
        bh=EmDsrXP4v9cpCFupBuBiY780M8VNv3o3VvWQ/BZlFuM=;
        b=NG/DFOXyCgT3aa7mx3N45ipUzWRJsi8pZLSz1ypUOItmXjdKD375m1y0w2SUss0r20
         hKJETQ3WBdLisgAc4WObLya0zEYFCt59h+OExJ45EtxngY6h4zEdxly4R53z5u6cweGn
         MwhLxuu743ccgYDzKPAki/1GmQjaG2s3c3r7HTs4DfScvL1bYnY4bFOa0xOjmf9A2cG/
         o+pHBtNeqYBkfzRGlMWU1i2FceKRx8zGZfj5Sz8uOGkpWFLuiA7sKWKr4P9ME9iza7Hp
         A+yWmcJYntDcKx7m6JWR1JzEIfeZDtQR9dRFEP3kGFFY9l3JKThBC/eeo1Dg/e3UHomn
         tMSQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20230601; t=1720835067; x=1721439867;
        h=list-unsubscribe:list-subscribe:list-archive:list-help:list-post
         :list-id:mailing-list:precedence:x-original-sender:mime-version
         :subject:references:in-reply-to:message-id:to:from:date:x-beenthere
         :x-gm-message-state:sender:from:to:cc:subject:date:message-id
         :reply-to;
        bh=EmDsrXP4v9cpCFupBuBiY780M8VNv3o3VvWQ/BZlFuM=;
        b=msGCWwUz+P+CapwLRjyG6AEi1tXql5ZDhjIUDUpcIe7TctEDBvodzEeSataDYRLHqP
         vb6ya+szHdeTtdgmtDCLoO65l1hsnvp88XvlyPIH9wNNohsCCrllC0CzI/DHs6B2KIge
         UorIbdmyzeNGgXsjkSDmX0hr5Jsl4kvOkkCudOu2E0fKO6qrJN79/miqC4x66Hrg0U/A
         VAOFGJ0G7hN3JvSDaBD6jq4FdR/2GQ8QNJ9N7tT8L1rksokXYcU8T4EoASFduP1Dj5Cp
         Qq4NUhJ2OO+UiNwgm9PQ2FX3/SXYQweqFA2Vo6y7POIOhVEwyJAUljUdKS8pwjpwV1LJ
         039A==
Sender: bitcoindev@googlegroups.com
X-Forwarded-Encrypted: i=1; AJvYcCXGZ0yIjPdHeWfJCEopCXLNeO6yU+opIwAkQpQTaP2IFo4oxdrS2X+JhdBI2UIAlA9R+k5wL4AxKH85dnp5HYvtFKgpuaw=
X-Gm-Message-State: AOJu0YzYILZPbhOVO9FVH74W+RDqcJgNFCoadF1wTZdBtu3j0DfinD+s
	cFg2CXig6yRXFgv5GnjH5sFeU9NaNDuihIyqAgbt+PHZ7fKyiW5P
X-Google-Smtp-Source: AGHT+IFVniQva7Cg6o3DMkKFyPbK7xTyxSmSGS6MjjHgHj+BxGOh7n5UOrkh/RjllM+jL37sRZEadg==
X-Received: by 2002:a25:aca0:0:b0:e03:6445:8ce with SMTP id 3f1490d57ef6-e041b11d23fmr13902587276.44.1720835067224;
        Fri, 12 Jul 2024 18:44:27 -0700 (PDT)
X-BeenThere: bitcoindev@googlegroups.com
Received: by 2002:a05:6902:18d2:b0:df4:e17a:8653 with SMTP id
 3f1490d57ef6-e0579035fd5ls3874609276.1.-pod-prod-08-us; Fri, 12 Jul 2024
 18:44:25 -0700 (PDT)
X-Received: by 2002:a05:6902:e01:b0:e05:6026:f741 with SMTP id 3f1490d57ef6-e056026f8aemr393401276.2.1720835065599;
        Fri, 12 Jul 2024 18:44:25 -0700 (PDT)
Received: by 2002:a05:690c:3202:b0:63b:c3b0:e1c with SMTP id 00721157ae682-65f73f2fa06ms7b3;
        Fri, 12 Jul 2024 18:34:21 -0700 (PDT)
X-Received: by 2002:a05:6902:2b8f:b0:e05:62b5:e70c with SMTP id 3f1490d57ef6-e0562b5f941mr712199276.0.1720834459971;
        Fri, 12 Jul 2024 18:34:19 -0700 (PDT)
Date: Fri, 12 Jul 2024 18:34:19 -0700 (PDT)
From: Antoine Riard <antoine.riard@gmail.com>
To: Bitcoin Development Mailing List <bitcoindev@googlegroups.com>
Message-Id: <cd6bda66-39d3-49ca-9f3c-f610258626b0n@googlegroups.com>
In-Reply-To: <2cbd432f-ca19-4481-93c5-3b0f7cdea1cb@DS3018xs>
References: <62fd28ab-e8b5-4cfc-b5ae-0d5a033af057n@googlegroups.com>
 <b3561407-483e-46cd-b5e9-d6d48f8dca93n@googlegroups.com>
 <d78f5dc4-a72d-4da4-8a24-105963155e4dn@googlegroups.com>
 <87b4e402-39d8-46b0-8269-4f81fa501627n@googlegroups.com>
 <2cbd432f-ca19-4481-93c5-3b0f7cdea1cb@DS3018xs>
Subject: Re: [bitcoindev] Re: Proposing a P2QRH BIP towards a quantum
 resistant soft fork
MIME-Version: 1.0
Content-Type: multipart/mixed; 
	boundary="----=_Part_438322_752256595.1720834459750"
X-Original-Sender: antoine.riard@gmail.com
Precedence: list
Mailing-list: list bitcoindev@googlegroups.com; contact bitcoindev+owners@googlegroups.com
List-ID: <bitcoindev.googlegroups.com>
X-Google-Group-Id: 786775582512
List-Post: <https://groups.google.com/group/bitcoindev/post>, <mailto:bitcoindev@googlegroups.com>
List-Help: <https://groups.google.com/support/>, <mailto:bitcoindev+help@googlegroups.com>
List-Archive: <https://groups.google.com/group/bitcoindev
List-Subscribe: <https://groups.google.com/group/bitcoindev/subscribe>, <mailto:bitcoindev+subscribe@googlegroups.com>
List-Unsubscribe: <mailto:googlegroups-manage+786775582512+unsubscribe@googlegroups.com>,
 <https://groups.google.com/group/bitcoindev/subscribe>
X-Spam-Score: -0.5 (/)

------=_Part_438322_752256595.1720834459750
Content-Type: multipart/alternative; 
	boundary="----=_Part_438323_1854552589.1720834459750"

------=_Part_438323_1854552589.1720834459750
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Hi Hunter Beast,

Apologies for the delay in answer.

> I was thinking of focusing on the IBM Quantum System Two, mention how it=
=20
can be scaled, and that although it might be quite limited, if running=20
Shor's variant for a > sufficient amount of time, above a certain minimum=
=20
threshold of qubits, it might be capable of decrypting the key to an=20
address within one year. I base this on the estimate > provided in a study=
=20
by the Sussex Centre for Quantum Technologies, et. al [1]. They provide two=
=20
figures, 317M qubits to decrypt in one hour, 13M qubits to decrypt in one >=
=20
day. It would seem it scales roughly linearly, and so extrapolating it=20
further, 36,000 qubits would be needed to decrypt an address within one=20
year. However, the IBM Heron > QPU turned out to have a gate time 100x less=
=20
than was estimated in 2022, and so it might be possible to make do with=20
even fewer qubits still within that timeframe. With > only 360 qubits,=20
barring algorithmic overhead such as for circuit memory, it might be=20
possible to decrypt a single address within a year. That might sound like a=
=20
lot, but > being able to accomplish that at all would be significant,=20
almost like a Chicago Pile moment, proving something in practice that was=
=20
previously only thought theoretically > possible for the past 3 decades.=20
And it's only downhill from there...

Briefly surveying the paper "The impact of hardware specifications on=20
reaching quantum advantage in the fault tolerant regime", I think it's a=20
reasonble framework to evaluate
the practical efficiency of quantum attacks on bitcoin, it's self=20
consistent and there is a critical approach referencing the usual=20
litterature on quantum attacks on bitcoin. Just
note the caveat, one can find in usual quantum complexity litterature,=20
"particularly in regard to end-to-end physical resource estimation. There=
=20
are many other error correction
techniques available, and the best choice will likely depend on the=20
underlying architecture's characteristics, such as the available physical=
=20
qubit=E2=80=93qubit connectivity" (verbatim). Namely, evaluating quantum at=
tacks is=20
very dependent on the concrete physical architecture underpinning it.

All that said, I agree with you that if you see a quantum computer with the=
=20
range of 1000 physical qubits being able to break the DLP for ECC based=20
encryption like secp256k1, even if it takes a year it will be a Chicago=20
Pile moment, or whatever comparative experiments which were happening about=
=20
chain of nuclear reactions in 30s / 40s.

>  I think it's time to revisit these discussions given IBM's progress.=20
They've published a two videos in particular that are worth watching; their=
=20
keynote from December of last > year [2], and their roadmap update from=20
just last month [3]

I have looked on the roadmap as it's available on the IBM blog post:=20
https://www.ibm.com/quantum/blog/quantum-roadmap-2033#mark-roadmap-out-to-2=
033
They give only a target of 2000 logical qubit to be reach in 2033...which=
=20
is surprisingly not that strong...And one expect they might hit likely soli=
d
state issues in laying out in hardware the Heron processor architecture. As=
=20
a point of thinking, it took like 2 decades to advance on the state of art
of litography in traditional chips manufacturing.
=20
So I think it's good to stay cool minded and I think my observation about=
=20
talking of "super-exponential rate" as used in maaku old blog post does not
hold a lot of rigor to describe the advances in the field of quantum=20
computing. Note, also how IMB is a commercial entity that can have a lot of=
=20
interests
in "pumping" the state of "quantum computing" to gather fundings (there is=
=20
a historical anecdote among bitcoin OG circles about Vitalik trying to do a=
n
ICO to build a quantum computer like 10 years ago, just to remember).

> I'm supportive of this consideration. FALCON might be a good substitute,=
=20
and maybe it can be upgraded to HAWK for even better performance depending=
=20
on how much > time there is. According to the BIP, FALCON signatures are=20
~10x larger t> han Schnorr signatures, so this will of course make the=20
transaction more expensive, but we also > must remember, these signatures=
=20
will be going into the witness, which already receives a 4x discount.=20
Perhaps the discount could be incr> eased further someday to fit > more=20
transactions into blocks, but this will also likely result in more=20
inscriptions filling unused space also, which permanently increases the=20
burden of running an archive > node. Due to the controversy s> uch a change=
=20
could bring, I would rather any increases in the witness discount be=20
excluded from future activation discussions, so as to be > considered=20
separately, even if it pertains to an increase in P2QRH transaction size.
=20
> Do you think it's worth reworking the BIP to use FALCON signatures? I've=
=20
only done a deep dive into SQIsign and SPHINCS+, and I will acknowledge the=
=20
readiness levels between those two are presently worlds apart.

I think FALCON is what has the smallest pubkey + sig size for hash-and-sign=
=20
lattice-based schemes. So I think it's worth reworking the BIP to see what=
=20
has the smallest generation / validation time and pubkey + size space for=
=20
the main post-quantum scheme. At least for dilthium, falcon, sphincs+ and=
=20
SQISign. For an hypothetical witness discount, a v2 P2QRH could be always=
=20
be moved in a very template annex tag / field.

> Also, do you think it's of any concern to use HASH160 instead of HASH256=
=20
in the output script? I think it's fine for a cryptographic commitment=20
since it's simply a hash of a hash (MD160 of SHA-256).

See literature on quantum attacks on bitcoin in the reference of the paper=
=20
you quote ("The impact of hardware specifications on reaching quantum=20
advantage in the fault tolerant regime") for a discussion on Grover's=20
search algorithm.

> I'm not sure I fully understand this, but even more practically, as=20
mentioned in the BIP, value can simply be kept in P2WPKH outputs, ideally=
=20
with a value of fewer than 50
> coins per address, and when funds ever need to be spent, the>=20
 transaction is signed and submitted out of band to a trusted mining pool,=
=20
ideally one that does KYC, so it's
> known which individual miners get to see the public key before it's=20
mined. It's not perfect, since this relies on exogenou> s security=20
assumptions, which is why P2QRH is
> proposed.

Again, the paper you're referencing ("The impact of hardware specifications=
=20
on reaching quantum advantage...") is analyzing the performance of quantum=
=20
advantage under
2 dimensions, namely space and time. My observation is in Bitcoin we have=
=20
an additional dimension, "coin scarcity" that can be leveraged to build=20
defense of address
spends in face of quantum attacks.

Namely you can introduce an artifical "witness-stack size scale ladder" in=
=20
pseudo-bitcoin script: OP_SIZE <1000> OP_EQUALVERIFY OP_DROP ...checksig...
I have not verified it works well on bitcoin core though this script should=
=20
put the burden on the quantum attacker to have enough bitcoin amount=20
available to burn in on-chain fees in witness size to break a P2WPKH.

>  ideally with a value of fewer than 50 coins per address, and when funds=
=20
ever need to be spent, the transaction is signed and submitted out of band=
=20
to a trusted mining pool, ideally
> one that does KYC, so it's known which individual > miners get to see the=
=20
public key before it's mined. It's not perfect, since this relies on=20
exogenous security assumptions, which is
> why P2QRH is proposed.

The technical issue if you implement KYC for a mining pool you're=20
increasing your DoS surface and this could be exploited by competing=20
miners. A more reasonable security model can be to have miner coinbase=20
pubkeys being used to commit to the "seen-in-mempool" spends and from then=
=20
build "hand wawy" fraud proofs that a miner is quantum attacking you're=20
P2WSH spends at pubkey reveal time during transaction relay.

Best,
Antoine

ots hash: 1ad818955bbf0c5468847c00c2974ddb5cf609d630523622bfdb27f1f0dc0b30
Le lundi 17 juin 2024 =C3=A0 23:25:25 UTC+1, hunter a =C3=A9crit :

>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA256
>
> On 2024-06-16 19:31, Antoine Riard <antoin...@gmail.com> wrote:
>
> >
> > Hi Hunter Beast,I think any post-quantum upgrade signature algorithm=20
> upgrade proposal would grandly benefit to haveShor's based practical=20
> attacks far more defined in the Bitcoin context. As soon you start to tal=
k=20
> aboutquantum computers there is no such thing as a "quantum computer"=20
> though a wide array of architecturesbased on a range of technologies to=
=20
> encode qubits on nanoscale physical properties.
> >
> Good point. I can write a section in the BIP Motivation or Security=20
> section about how an attack might take place practically, and the potenti=
al=20
> urgency of such an attack.
> =20
> I was thinking of focusing on the IBM Quantum System Two, mention how it=
=20
> can be scaled, and that although it might be quite limited, if running=20
> Shor's variant for a sufficient amount of time, above a certain minimum=
=20
> threshold of qubits, it might be capable of decrypting the key to an=20
> address within one year. I base this on the estimate provided in a study =
by=20
> the Sussex Centre for Quantum Technologies, et. al [1]. They provide two=
=20
> figures, 317M qubits to decrypt in one hour, 13M qubits to decrypt in one=
=20
> day. It would seem it scales roughly linearly, and so extrapolating it=20
> further, 36,000 qubits would be needed to decrypt an address within one=
=20
> year. However, the IBM Heron QPU turned out to have a gate time 100x less=
=20
> than was estimated in 2022, and so it might be possible to make do with=
=20
> even fewer qubits still within that timeframe. With only 360 qubits,=20
> barring algorithmic overhead such as for circuit memory, it might be=20
> possible to decrypt a single address within a year. That might sound like=
 a=20
> lot, but being able to accomplish that at all would be significant, almos=
t=20
> like a Chicago Pile moment, proving something in practice that was=20
> previously only thought theoretically possible for the past 3 decades. An=
d=20
> it's only downhill from there...
> >
> > This is not certain that any Shor's algorithm variant works smoothly=20
> independently of the quantum computerarchitecture considered (e.g gate=20
> frequency, gate infidelity, cooling energy consumption) and I think it'sa=
n=20
> interesting open game-theory problem if you can concentrate a sufficiant=
=20
> amount of energy before anycoin owner moves them in consequence (e.g seei=
ng=20
> a quantum break in the mempool and reacting with a counter-spend).
> >
> It should be noted that P2PK keys still hold millions of bitcoin, and=20
> those encode the entire public key for everyone to see for all time. Thus=
,=20
> early QC attacks won't need to consider the complexities of the mempool.
> >
> > In my opinion, one of the last time the subject was addressed on the=20
> mailing list, the description of the state of the quantum computer field=
=20
> was not realistic and get into risk characterization hyperbole talking=20
> about "super-exponential rate" (when indeed there is no empirical=20
> realization that distinct theoretical advance on quantum capabilities can=
=20
> be combined with each other) [1].
> >
> I think it's time to revisit these discussions given IBM's progress.=20
> They've published a two videos in particular that are worth watching; the=
ir=20
> keynote from December of last year [2], and their roadmap update from jus=
t=20
> last month [3].
> >
> > On your proposal, there is an immediate observation which comes to mind=
,=20
> namely why not using one of the algorithm(dilthium, sphincs+, falcon) whi=
ch=20
> has been through the 3 rounds of NIST cryptanalysis. Apart of the signatu=
re=20
> size,which sounds to be smaller, in a network of full-nodes any PQ=20
> signature algorithm should have reasonable verificationperformances.
> >
> I'm supportive of this consideration. FALCON might be a good substitute,=
=20
> and maybe it can be upgraded to HAWK for even better performance dependin=
g=20
> on how much time there is. According to the BIP, FALCON signatures are ~1=
0x=20
> larger than Schnorr signatures, so this will of course make the transacti=
on=20
> more expensive, but we also must remember, these signatures will be going=
=20
> into the witness, which already receives a 4x discount. Perhaps the=20
> discount could be increased further someday to fit more transactions into=
=20
> blocks, but this will also likely result in more inscriptions filling=20
> unused space also, which permanently increases the burden of running an=
=20
> archive node. Due to the controversy such a change could bring, I would=
=20
> rather any increases in the witness discount be excluded from future=20
> activation discussions, so as to be considered separately, even if it=20
> pertains to an increase in P2QRH transaction size.
> =20
> Do you think it's worth reworking the BIP to use FALCON signatures? I've=
=20
> only done a deep dive into SQIsign and SPHINCS+, and I will acknowledge t=
he=20
> readiness levels between those two are presently worlds apart.
> =20
> Also, do you think it's of any concern to use HASH160 instead of HASH256=
=20
> in the output script? I think it's fine for a cryptographic commitment=20
> since it's simply a hash of a hash (MD160 of SHA-256).
> >
> > Lastly, there is a practical defensive technique that can be implemente=
d=20
> today by coin owners to protect in face ofhyptothetical quantum=20
> adversaries. Namely setting spending scripts to request an artificially=
=20
> inflated witness stack,as the cost has to be burden by the spender. I thi=
nk=20
> one can easily do that with OP_DUP and OP_GREATERTHAN and a bitof stack=
=20
> shuffling. While the efficiency of this technique is limited by the max=
=20
> consensus size of the script stack(`MAX_STACK_SIZE`) and the max consensu=
s=20
> size of stack element (`MAX_SCRIPT_ELEMENT_SIZE`), this adds an=20
> additional"scarce coins" pre-requirement on the quantum adversarise to=20
> succeed. Shor's algorithm is only defined under theclassic ressources of=
=20
> computational complexity, time and space.
> >
> I'm not sure I fully understand this, but even more practically, as=20
> mentioned in the BIP, value can simply be kept in P2WPKH outputs, ideally=
=20
> with a value of fewer than 50 coins per address, and when funds ever need=
=20
> to be spent, the transaction is signed and submitted out of band to a=20
> trusted mining pool, ideally one that does KYC, so it's known which=20
> individual miners get to see the public key before it's mined. It's not=
=20
> perfect, since this relies on exogenous security assumptions, which is wh=
y=20
> P2QRH is proposed.
> >
> > Best,Antoine
> > [1] https://freicoin.substack.com/p/why-im-against-taproot
> >
> =20
> I'm grateful you took the time to review the BIP and offer your detailed=
=20
> insights.
> =20
> [1] =E2=80=9CThe impact of hardware specifications on reaching quantum ad=
vantage=20
> in the fault tolerant regime,=E2=80=9D 2022 -=20
> https://pubs.aip.org/avs/aqs/article/4/1/013801/2835275/The-impact-of-har=
dware-specifications-on-reaching
> [2] https://www.youtube.com/watch?v=3DDe2IlWji8Ck
> [3] https://www.youtube.com/watch?v=3Dd5aIx79OTps
> =20
> >
> >
> > Le vendredi 14 juin 2024 =C3=A0 15:30:54 UTC+1, Hunter Beast a =C3=A9cr=
it :
> >
> > > Good points. I like your suggestion for a SPHINCS+, just due to how=
=20
> mature it is in comparison to SQIsign. It's already in its third round an=
d=20
> has several standards-compliant implementations, and it has an actual=20
> specification rather than just a research paper. One thing to consider is=
=20
> that NIST-I round 3 signatures are 982 bytes in size, according to what I=
=20
> was able to find in the documents hosted by the SPHINCS website.
> > >=20
> https://web.archive.org/web/20230711000109if_/http://sphincs.org/data/sph=
incs+-round3-submission-nist.zip
> > > =20
> > > One way to handle this is to introduce this as a separate address typ=
e=20
> than SQIsign. That won't require OP_CAT, and I do want to keep this soft=
=20
> fork limited in scope. If SQIsign does become significantly broken, in th=
is=20
> hopefully far future scenario, I might be supportive of an increase in th=
e=20
> witness discount.
> > > =20
> > > Also, I've made some additional changes based on your feedback on X.=
=20
> You can review them here if you so wish:
> > >=20
> https://github.com/cryptoquick/bips/pull/5/files?short_path=3D917a32a#dif=
f-917a32a71b69bf62d7c85dfb13d520a0340a30a2889b015b82d36411ed45e754
> > >
> > >
> > > On Friday, June 14, 2024 at 8:15:29=E2=80=AFAM UTC-6 Pierre-Luc=20
> Dallaire-Demers wrote:
> > > > SQIsign is blockchain friendly but also very new, I would recommend=
=20
> adding a hash-based backup key in case an attack on SQIsign is found in t=
he=20
> future (recall that SIDH broke over the span of a weekend=20
> https://eprint.iacr.org/2022/975.pdf).
> > > > Backup keys can be added in the form of a Merkle tree where one=20
> branch would contain the SQIsign public key and the other the public key =
of=20
> the recovery hash-based scheme. For most transactions it would only add o=
ne=20
> bit to specify the SQIsign branch.
> > > > The hash-based method could be Sphincs+, which is standardized by=
=20
> NIST but requires adding extra code, or Lamport, which is not standardize=
d=20
> but can be verified on-chain with OP-CAT.
> > > >
> > > > On Sunday, June 9, 2024 at 12:07:16=E2=80=AFp.m. UTC-4 Hunter Beast=
 wrote:
> > > > > The motivation for this BIP is to provide a concrete proposal for=
=20
> adding quantum resistance to Bitcoin. We will need to pick a signature=20
> algorithm, implement it, and have it ready in event of quantum emergency.=
=20
> There will be time to adopt it. Importantly, this first step is a more=20
> substantive answer to those with concerns beyond, "quantum computers may=
=20
> pose a threat, but we likely don't have to worry about that for a long=20
> time". Bitcoin development and activation is slow, so it's important that=
=20
> those with low time preference start discussing this as a serious=20
> possibility sooner rather than later. This is meant to be the first in a=
=20
> series of BIPs regarding a hypothetical "QuBit" soft fork. The BIP is=20
> intended to propose concrete solutions, even if they're early and=20
> incomplete, so that Bitcoin developers are aware of the existence of thes=
e=20
> solutions and their potential. This is just a rough draft and not the=20
> finished BIP. I'd like to validate the approach and hear if I should=20
> continue working on it, whether serious changes are needed, or if this=20
> truly isn't a worthwhile endeavor right now.
> > > > > =20
> > > > > The BIP can be found here:
> > > > > https://github.com/cryptoquick/bips/blob/p2qrh/bip-p2qrh.mediawik=
i
> > > > > =20
> > > > > Thank you for your time.
> > > > > =20
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
> > -- You received this message because you are subscribed to a topic in=
=20
> the Google Groups "Bitcoin Development Mailing List" group. To unsubscrib=
e=20
> from this topic, visit=20
> https://groups.google.com/d/topic/bitcoindev/Aee8xKuIC2s/unsubscribe. To=
=20
> unsubscribe from this group and all its topics, send an email to=20
> bitcoindev+...@googlegroups.com. To view this discussion on the web visit=
=20
> https://groups.google.com/d/msgid/bitcoindev/87b4e402-39d8-46b0-8269-4f81=
fa501627n%40googlegroups.com
> .
>
> -----BEGIN PGP SIGNATURE-----
> Version: OpenPGP.js v4.10.3
> Comment: https://openpgpjs.org
>
> wsBcBAEBCAAGBQJmcJwuAAoJEDEPCKe+At0hjhkIAIdM7QN9hAO0z+KO7Bwe
> JT45XyusJmDG1gJbLZtb+SfuE1X5PFDHNTLSNliJWsOImxFCiBPnlXhYQ4B/
> 8gST3rqplUwkdYr52E5uMxTTq9YaXTako4PNb8d7XfraIwDKXAJF+5Skf4f9
> bQUYMieBAFSEXCmluirQymB+hUoaze60Whd07hhpzbGSwK4DdSXltufkyCDE
> tJUforNWm8X25ABTSNDh3+if5V/wJuix/u8GJyMHKucaEAO01ki2oyusq2rt
> Xe6ysUieclusFFdQAs4PfYxhzXTf5XeAbFga/qxrVtbt7q2nUkYklqteT2pp
> mH/DU20HMBeGVSrISrvsmLw=3D
> =3D+wat
> -----END PGP SIGNATURE-----
>
>

--=20
You received this message because you are subscribed to the Google Groups "=
Bitcoin Development Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to bitcoindev+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/=
bitcoindev/cd6bda66-39d3-49ca-9f3c-f610258626b0n%40googlegroups.com.

------=_Part_438323_1854552589.1720834459750
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Hi Hunter Beast,<br /><br />Apologies for the delay in answer.<br /><br />&=
gt; I was thinking of focusing on the IBM Quantum System Two, mention how i=
t can be scaled, and that although it might be quite limited, if running Sh=
or's variant for a &gt; sufficient amount of time, above a certain minimum =
threshold of qubits, it might be capable of decrypting the key to an addres=
s within one year. I base this on the estimate &gt; provided in a study by =
the Sussex Centre for Quantum Technologies, et. al [1]. They provide two fi=
gures, 317M qubits to decrypt in one hour, 13M qubits to decrypt in one &gt=
; day. It would seem it scales roughly linearly, and so extrapolating it fu=
rther, 36,000 qubits would be needed to decrypt an address within one year.=
 However, the IBM Heron &gt; QPU turned out to have a gate time 100x less t=
han was estimated in 2022, and so it might be possible to make do with even=
 fewer qubits still within that timeframe. With &gt; only 360 qubits, barri=
ng algorithmic overhead such as for circuit memory, it might be possible to=
 decrypt a single address within a year. That might sound like a lot, but &=
gt; being able to accomplish that at all would be significant, almost like =
a Chicago Pile moment, proving something in practice that was previously on=
ly thought theoretically &gt; possible for the past 3 decades. And it's onl=
y downhill from there...<br /><br />Briefly surveying the paper "The impact=
 of hardware specifications on reaching quantum advantage in the fault tole=
rant regime", I think it's a reasonble framework to evaluate<br />the pract=
ical efficiency of quantum attacks on bitcoin, it's self consistent and the=
re is a critical approach referencing the usual litterature on quantum atta=
cks on bitcoin. Just<br />note the caveat, one can find in usual quantum co=
mplexity litterature, "particularly in regard to end-to-end physical resour=
ce estimation. There are many other error correction<br />techniques availa=
ble, and the best choice will likely depend on the underlying architecture'=
s characteristics, such as the available physical qubit=E2=80=93qubit conne=
ctivity" (verbatim). Namely, evaluating quantum attacks is very dependent o=
n the concrete physical architecture underpinning it.<br /><br />All that s=
aid, I agree with you that if you see a quantum computer with the range of =
1000 physical qubits being able to break the DLP for ECC based encryption l=
ike secp256k1, even if it takes a year it will be a Chicago Pile moment, or=
 whatever comparative experiments which were happening about chain of nucle=
ar reactions in 30s / 40s.<br /><br />&gt; =C2=A0I think it's time to revis=
it these discussions given IBM's progress. They've published a two videos i=
n particular that are worth watching; their keynote from December of last &=
gt; year [2], and their roadmap update from just last month [3]<br /><br />=
I have looked on the roadmap as it's available on the IBM blog post: https:=
//www.ibm.com/quantum/blog/quantum-roadmap-2033#mark-roadmap-out-to-2033<br=
 />They give only a target of 2000 logical qubit to be reach in 2033...whic=
h is surprisingly not that strong...And one expect they might hit likely so=
lid<br />state issues in laying out in hardware the Heron processor archite=
cture. As a point of thinking, it took like 2 decades to advance on the sta=
te of art<br />of litography in traditional chips manufacturing.<br />=C2=
=A0<br />So I think it's good to stay cool minded and I think my observatio=
n about talking of "super-exponential rate" as used in maaku old blog post =
does not<br />hold a lot of rigor to describe the advances in the field of =
quantum computing. Note, also how IMB is a commercial entity that can have =
a lot of interests<br />in "pumping" the state of "quantum computing" to ga=
ther fundings (there is a historical anecdote among bitcoin OG circles abou=
t Vitalik trying to do an<br />ICO to build a quantum computer like 10 year=
s ago, just to remember).<br /><br />&gt; I'm supportive of this considerat=
ion. FALCON might be a good substitute, and maybe it can be upgraded to HAW=
K for even better performance depending on how much &gt; time there is. Acc=
ording to the BIP, FALCON signatures are ~10x larger t&gt; han Schnorr sign=
atures, so this will of course make the transaction more expensive, but we =
also &gt; must remember, these signatures will be going into the witness, w=
hich already receives a 4x discount. Perhaps the discount could be incr&gt;=
 eased further someday to fit &gt; more transactions into blocks, but this =
will also likely result in more inscriptions filling unused space also, whi=
ch permanently increases the burden of running an archive &gt; node. Due to=
 the controversy s&gt; uch a change could bring, I would rather any increas=
es in the witness discount be excluded from future activation discussions, =
so as to be &gt; considered separately, even if it pertains to an increase =
in P2QRH transaction size.<br />=C2=A0<br />&gt; Do you think it's worth re=
working the BIP to use FALCON signatures? I've only done a deep dive into S=
QIsign and SPHINCS+, and I will acknowledge the readiness levels between th=
ose two are presently worlds apart.<br /><br />I think FALCON is what has t=
he smallest pubkey + sig size for hash-and-sign lattice-based schemes. So I=
 think it's worth reworking the BIP to see what has the smallest generation=
 / validation time and pubkey + size space for the main post-quantum scheme=
. At least for dilthium, falcon, sphincs+ and SQISign. For an hypothetical =
witness discount, a v2 P2QRH could be always be moved in a very template an=
nex tag / field.<br /><br />&gt; Also, do you think it's of any concern to =
use HASH160 instead of HASH256 in the output script? I think it's fine for =
a cryptographic commitment since it's simply a hash of a hash (MD160 of SHA=
-256).<br /><br />See literature on quantum attacks on bitcoin in the refer=
ence of the paper you quote ("The impact of hardware specifications on reac=
hing quantum advantage in the fault tolerant regime") for a discussion on G=
rover's search algorithm.<br /><br />&gt; I'm not sure I fully understand t=
his, but even more practically, as mentioned in the BIP, value can simply b=
e kept in P2WPKH outputs, ideally with a value of fewer than 50<div>&gt; co=
ins per address, and when funds ever need to be spent, the&gt; =C2=A0transa=
ction is signed and submitted out of band to a trusted mining pool, ideally=
 one that does KYC, so it's</div><div>&gt; known which individual miners ge=
t to see the public key before it's mined. It's not perfect, since this rel=
ies on exogenou&gt; s security assumptions, which is why P2QRH is</div><div=
>&gt; proposed.<br /><br />Again, the paper you're referencing ("The impact=
 of hardware specifications on reaching quantum advantage...") is analyzing=
 the performance of quantum advantage under<br />2 dimensions, namely space=
 and time. My observation is in Bitcoin we have an additional dimension, "c=
oin scarcity" that can be leveraged to build defense of address<br />spends=
 in face of quantum attacks.<br /><br />Namely you can introduce an artific=
al "witness-stack size scale ladder" in pseudo-bitcoin script: OP_SIZE &lt;=
1000&gt; OP_EQUALVERIFY OP_DROP ...checksig...<br />I have not verified it =
works well on bitcoin core though this script should put the burden on the =
quantum attacker to have enough bitcoin amount available to burn in on-chai=
n fees in witness size to break a P2WPKH.<br /><br />&gt; =C2=A0ideally wit=
h a value of fewer than 50 coins per address, and when funds ever need to b=
e spent, the transaction is signed and submitted out of band to a trusted m=
ining pool, ideally<br />&gt; one that does KYC, so it's known which indivi=
dual &gt; miners get to see the public key before it's mined. It's not perf=
ect, since this relies on exogenous security assumptions, which is<br />&gt=
; why P2QRH is proposed.<br /><br />The technical issue if you implement KY=
C for a mining pool you're increasing your DoS surface and this could be ex=
ploited by competing miners. A more reasonable security model can be to hav=
e miner coinbase pubkeys being used to commit to the "seen-in-mempool" spen=
ds and from then build "hand wawy" fraud proofs that a miner is quantum att=
acking you're P2WSH spends at pubkey reveal time during transaction relay.<=
br /><br />Best,<br />Antoine</div><div><br /></div><div>ots hash:=C2=A01ad=
818955bbf0c5468847c00c2974ddb5cf609d630523622bfdb27f1f0dc0b30</div><div cla=
ss=3D"gmail_quote"><div dir=3D"auto" class=3D"gmail_attr">Le lundi 17 juin =
2024 =C3=A0 23:25:25 UTC+1, hunter a =C3=A9crit=C2=A0:<br/></div><blockquot=
e class=3D"gmail_quote" style=3D"margin: 0 0 0 0.8ex; border-left: 1px soli=
d rgb(204, 204, 204); padding-left: 1ex;">
<br>-----BEGIN PGP SIGNED MESSAGE-----
<br>Hash: SHA256
<br>
<br>On 2024-06-16 19:31, Antoine Riard &lt;<a href data-email-masked rel=3D=
"nofollow">antoin...@gmail.com</a>&gt; wrote:
<br>
<br>&gt;
<br>&gt; Hi Hunter Beast,I think any post-quantum upgrade signature algorit=
hm upgrade proposal would grandly benefit to haveShor&#39;s based practical=
 attacks far more defined in the Bitcoin context. As soon you start to talk=
 aboutquantum computers there is no such thing as a &quot;quantum computer&=
quot; though a wide array of architecturesbased on a range of technologies =
to encode qubits on nanoscale physical properties.
<br>&gt;
<br>Good point. I can write a section in the BIP Motivation or Security sec=
tion about how an attack might take place practically, and the potential ur=
gency of such an attack.
<br>=C2=A0
<br>I was thinking of focusing on the IBM Quantum System Two, mention how i=
t can be scaled, and that although it might be quite limited, if running Sh=
or&#39;s variant for a sufficient amount of time, above a certain minimum t=
hreshold of qubits, it might be capable of decrypting the key to an address=
 within one year. I base this on the estimate provided in a study by the Su=
ssex Centre for Quantum Technologies, et. al [1]. They provide two figures,=
 317M qubits to decrypt in one hour, 13M qubits to decrypt in one day. It w=
ould seem it scales roughly linearly, and so extrapolating it further, 36,0=
00 qubits would be needed to decrypt an address within one year. However, t=
he IBM Heron QPU=C2=A0turned out to have a gate time 100x less than was est=
imated in 2022, and so it might be possible to make do with even fewer qubi=
ts still within that timeframe. With only 360 qubits, barring algorithmic o=
verhead such as for circuit memory, it might be possible to=C2=A0decrypt a =
single address within a year. That might sound like a lot, but being able t=
o=C2=A0accomplish that=C2=A0at all would be significant, almost like a Chic=
ago Pile moment, proving something in practice that was previously only tho=
ught theoretically possible for the past 3 decades. And it&#39;s only downh=
ill from there...
<br>&gt;
<br>&gt; This is not certain that any Shor&#39;s algorithm variant works sm=
oothly independently of the quantum computerarchitecture considered (e.g ga=
te frequency, gate infidelity, cooling energy consumption) and I think it&#=
39;san interesting open game-theory problem if you can concentrate a suffic=
iant amount of energy before anycoin owner moves them in consequence (e.g s=
eeing a quantum break in the mempool and reacting with a counter-spend).
<br>&gt;
<br>It should be noted that P2PK keys still hold millions of bitcoin, and t=
hose encode the entire public key for everyone to see for all time. Thus, e=
arly QC attacks won&#39;t need to consider the=C2=A0complexities of the mem=
pool.
<br>&gt;
<br>&gt; In my opinion, one of the last time the subject was addressed on t=
he mailing list, the description of the state of the quantum computer field=
 was not realistic and get into risk characterization hyperbole talking abo=
ut &quot;super-exponential rate&quot; (when indeed there is no empirical re=
alization=C2=A0that distinct theoretical advance on quantum capabilities=C2=
=A0can be combined with each other) [1].
<br>&gt;
<br>I think it&#39;s time to revisit these discussions given IBM&#39;s prog=
ress. They&#39;ve published a two videos in particular that are worth watch=
ing; their keynote from December of last year [2], and their roadmap update=
 from just last month [3].
<br>&gt;
<br>&gt; On your proposal, there is an immediate observation which comes to=
 mind, namely why not using one of the algorithm(dilthium, sphincs+, falcon=
) which has been through the 3 rounds of NIST cryptanalysis. Apart of the s=
ignature size,which sounds to be smaller, in a network of full-nodes any PQ=
 signature algorithm should have reasonable verificationperformances.
<br>&gt;
<br>I&#39;m supportive of this consideration. FALCON might be a good substi=
tute, and maybe it can be upgraded to HAWK for even better performance depe=
nding on how much time there is. According to the BIP, FALCON signatures ar=
e ~10x larger than Schnorr signatures, so this will of course make the tran=
saction more expensive, but we also must remember, these signatures will be=
 going into the witness, which already receives a 4x discount. Perhaps the =
discount could be increased further someday to fit more transactions into b=
locks, but this will also likely result in more inscriptions filling unused=
 space also, which permanently increases the burden of running an archive n=
ode. Due to the controversy such a change could bring, I would rather any i=
ncreases in the witness discount be excluded from future activation discuss=
ions, so as to be considered separately, even if it pertains to an increase=
 in P2QRH transaction size.
<br>=C2=A0
<br>Do you think it&#39;s worth reworking the BIP to use FALCON signatures?=
 I&#39;ve only done a deep dive into SQIsign and SPHINCS+, and I will ackno=
wledge the readiness levels between those two are presently worlds apart.
<br>=C2=A0
<br>Also, do you think it&#39;s of any concern to use HASH160 instead of HA=
SH256 in the output script? I think it&#39;s fine for a cryptographic commi=
tment since it&#39;s simply a hash of a hash (MD160 of SHA-256).
<br>&gt;
<br>&gt; Lastly, there is a practical defensive technique that can be imple=
mented today by coin owners to protect in face ofhyptothetical quantum adve=
rsaries. Namely setting spending scripts to request an artificially inflate=
d witness stack,as the cost has to be burden by the spender. I think one ca=
n easily do that with OP_DUP and OP_GREATERTHAN and a bitof stack shuffling=
. While the efficiency of this technique is limited by the max consensus si=
ze of the script stack(`MAX_STACK_SIZE`) and the max consensus size of stac=
k element (`MAX_SCRIPT_ELEMENT_SIZE`), this adds an additional&quot;scarce =
coins&quot; pre-requirement on the quantum adversarise to succeed. Shor&#39=
;s algorithm is only defined under theclassic ressources of computational c=
omplexity, time and space.
<br>&gt;
<br>I&#39;m not sure I fully understand this, but even more practically, as=
 mentioned in the BIP, value can simply be kept in P2WPKH outputs, ideally =
with a value of fewer than 50 coins per address, and when funds ever need t=
o be spent, the transaction is signed and submitted out of band to a truste=
d mining pool, ideally one that does KYC, so it&#39;s known which individua=
l miners get to see the public key before it&#39;s mined. It&#39;s not perf=
ect, since this relies on exogenous security assumptions, which is why P2QR=
H is proposed.
<br>&gt;
<br>&gt; Best,Antoine
<br>&gt; [1]=C2=A0<a href=3D"https://freicoin.substack.com/p/why-im-against=
-taproot" target=3D"_blank" rel=3D"nofollow" data-saferedirecturl=3D"https:=
//www.google.com/url?hl=3Dfr&amp;q=3Dhttps://freicoin.substack.com/p/why-im=
-against-taproot&amp;source=3Dgmail&amp;ust=3D1720920596076000&amp;usg=3DAO=
vVaw0XUMHJVxElIFDHr9_jVsff">https://freicoin.substack.com/p/why-im-against-=
taproot</a>
<br>&gt;
<br>=C2=A0
<br>I&#39;m grateful you took the time to review the BIP and offer your det=
ailed insights.
<br>=C2=A0
<br>[1] =E2=80=9CThe impact of hardware specifications on reaching quantum =
advantage in the fault tolerant regime,=E2=80=9D 2022=C2=A0-=C2=A0<a href=
=3D"https://pubs.aip.org/avs/aqs/article/4/1/013801/2835275/The-impact-of-h=
ardware-specifications-on-reaching" target=3D"_blank" rel=3D"nofollow" data=
-saferedirecturl=3D"https://www.google.com/url?hl=3Dfr&amp;q=3Dhttps://pubs=
.aip.org/avs/aqs/article/4/1/013801/2835275/The-impact-of-hardware-specific=
ations-on-reaching&amp;source=3Dgmail&amp;ust=3D1720920596076000&amp;usg=3D=
AOvVaw3bSk6mN4iGQ5aXY3KyLPEM">https://pubs.aip.org/avs/aqs/article/4/1/0138=
01/2835275/The-impact-of-hardware-specifications-on-reaching</a>
<br>[2]=C2=A0<a href=3D"https://www.youtube.com/watch?v=3DDe2IlWji8Ck" targ=
et=3D"_blank" rel=3D"nofollow" data-saferedirecturl=3D"https://www.google.c=
om/url?hl=3Dfr&amp;q=3Dhttps://www.youtube.com/watch?v%3DDe2IlWji8Ck&amp;so=
urce=3Dgmail&amp;ust=3D1720920596076000&amp;usg=3DAOvVaw29lG0NFzT1y3kVmbhPe=
iok">https://www.youtube.com/watch?v=3DDe2IlWji8Ck</a>
<br>[3]=C2=A0<a href=3D"https://www.youtube.com/watch?v=3Dd5aIx79OTps" targ=
et=3D"_blank" rel=3D"nofollow" data-saferedirecturl=3D"https://www.google.c=
om/url?hl=3Dfr&amp;q=3Dhttps://www.youtube.com/watch?v%3Dd5aIx79OTps&amp;so=
urce=3Dgmail&amp;ust=3D1720920596076000&amp;usg=3DAOvVaw36piVFgMiooTX2aPpKd=
sAK">https://www.youtube.com/watch?v=3Dd5aIx79OTps</a>
<br>=C2=A0
<br>&gt;
<br>&gt;
<br>&gt; Le vendredi 14 juin 2024 =C3=A0 15:30:54 UTC+1, Hunter Beast a =C3=
=A9crit=C2=A0:
<br>&gt;
<br>&gt; &gt; Good points. I like your suggestion for a SPHINCS+, just due =
to how mature it is in comparison to SQIsign. It&#39;s already in its third=
 round and has several standards-compliant implementations, and it has an a=
ctual specification rather than just a research paper. One thing to conside=
r is that NIST-I round 3 signatures are 982 bytes in size, according to wha=
t I was able to find in the documents hosted by the SPHINCS website.
<br>&gt; &gt; <a href=3D"https://web.archive.org/web/20230711000109if_/http=
://sphincs.org/data/sphincs+-round3-submission-nist.zip" target=3D"_blank" =
rel=3D"nofollow" data-saferedirecturl=3D"https://www.google.com/url?hl=3Dfr=
&amp;q=3Dhttps://web.archive.org/web/20230711000109if_/http://sphincs.org/d=
ata/sphincs%2B-round3-submission-nist.zip&amp;source=3Dgmail&amp;ust=3D1720=
920596076000&amp;usg=3DAOvVaw2oLnDsRMGGIuAXoQrT5duz">https://web.archive.or=
g/web/20230711000109if_/http://sphincs.org/data/sphincs+-round3-submission-=
nist.zip</a>
<br>&gt; &gt; =C2=A0
<br>&gt; &gt; One way to handle this is to introduce this as a separate add=
ress type than SQIsign. That won&#39;t require OP_CAT, and I do want to kee=
p this soft fork limited in scope. If SQIsign does become significantly bro=
ken, in this hopefully far future scenario, I might be supportive of an inc=
rease in the witness discount.
<br>&gt; &gt; =C2=A0
<br>&gt; &gt; Also, I&#39;ve made some additional changes based on your fee=
dback on X. You can review them here if you so wish:
<br>&gt; &gt; <a href=3D"https://github.com/cryptoquick/bips/pull/5/files?s=
hort_path=3D917a32a#diff-917a32a71b69bf62d7c85dfb13d520a0340a30a2889b015b82=
d36411ed45e754" target=3D"_blank" rel=3D"nofollow" data-saferedirecturl=3D"=
https://www.google.com/url?hl=3Dfr&amp;q=3Dhttps://github.com/cryptoquick/b=
ips/pull/5/files?short_path%3D917a32a%23diff-917a32a71b69bf62d7c85dfb13d520=
a0340a30a2889b015b82d36411ed45e754&amp;source=3Dgmail&amp;ust=3D17209205960=
76000&amp;usg=3DAOvVaw1W9VPYP5nQ0olOTPWqQqQ6">https://github.com/cryptoquic=
k/bips/pull/5/files?short_path=3D917a32a#diff-917a32a71b69bf62d7c85dfb13d52=
0a0340a30a2889b015b82d36411ed45e754</a>
<br>&gt; &gt;
<br>&gt; &gt;
<br>&gt; &gt; On Friday, June 14, 2024 at 8:15:29=E2=80=AFAM UTC-6 Pierre-L=
uc Dallaire-Demers wrote:
<br>&gt; &gt; &gt; SQIsign is blockchain friendly but also very new, I woul=
d recommend adding a hash-based backup key in case an attack on SQIsign is =
found in the future (recall that SIDH broke over the span of a weekend=C2=
=A0<a href=3D"https://eprint.iacr.org/2022/975.pdf" target=3D"_blank" rel=
=3D"nofollow" data-saferedirecturl=3D"https://www.google.com/url?hl=3Dfr&am=
p;q=3Dhttps://eprint.iacr.org/2022/975.pdf&amp;source=3Dgmail&amp;ust=3D172=
0920596076000&amp;usg=3DAOvVaw1QsAA1H7slSHaHNDel0aRi">https://eprint.iacr.o=
rg/2022/975.pdf</a>).
<br>&gt; &gt; &gt; Backup keys can be added in the form of a Merkle tree wh=
ere one branch would contain the SQIsign public key and the other the publi=
c key of the recovery hash-based scheme. For most transactions it would onl=
y add one bit to specify the SQIsign branch.
<br>&gt; &gt; &gt; The hash-based method could be Sphincs+, which is standa=
rdized by NIST but requires adding extra code, or Lamport, which is not sta=
ndardized but can be verified on-chain with OP-CAT.
<br>&gt; &gt; &gt;
<br>&gt; &gt; &gt; On Sunday, June 9, 2024 at 12:07:16=E2=80=AFp.m. UTC-4 H=
unter Beast wrote:
<br>&gt; &gt; &gt; &gt; The motivation for this BIP is to provide a concret=
e proposal for adding quantum resistance to Bitcoin. We will need to pick a=
 signature algorithm, implement it, and have it ready in event of quantum e=
mergency. There will be time to adopt it. Importantly, this first step is a=
 more substantive answer to those with concerns beyond, &quot;quantum compu=
ters may pose a threat, but we likely don&#39;t have to worry about that fo=
r a long time&quot;. Bitcoin development and activation is slow, so it&#39;=
s important that those with low time preference start discussing this as a =
serious possibility sooner rather than later.  This is meant to be the firs=
t in a series of BIPs regarding a hypothetical &quot;QuBit&quot; soft fork.=
 The BIP is intended to propose concrete solutions, even if they&#39;re ear=
ly and incomplete, so that Bitcoin developers are aware of the existence of=
 these solutions and their potential.  This is just a rough draft and not t=
he finished BIP. I&#39;d like to validate the approach and hear if I should=
 continue working on it, whether serious changes are needed, or if this tru=
ly isn&#39;t a worthwhile endeavor right now.
<br>&gt; &gt; &gt; &gt; =C2=A0
<br>&gt; &gt; &gt; &gt; The BIP can be found here:
<br>&gt; &gt; &gt; &gt; <a href=3D"https://github.com/cryptoquick/bips/blob=
/p2qrh/bip-p2qrh.mediawiki" target=3D"_blank" rel=3D"nofollow" data-safered=
irecturl=3D"https://www.google.com/url?hl=3Dfr&amp;q=3Dhttps://github.com/c=
ryptoquick/bips/blob/p2qrh/bip-p2qrh.mediawiki&amp;source=3Dgmail&amp;ust=
=3D1720920596076000&amp;usg=3DAOvVaw00XXOmMsutEXrvY21W8C_I">https://github.=
com/cryptoquick/bips/blob/p2qrh/bip-p2qrh.mediawiki</a>
<br>&gt; &gt; &gt; &gt; =C2=A0
<br>&gt; &gt; &gt; &gt; Thank you for your time.
<br>&gt; &gt; &gt; &gt; =C2=A0
<br>&gt; &gt; &gt; &gt;
<br>&gt; &gt; &gt;
<br>&gt; &gt; &gt;
<br>&gt; &gt;
<br>&gt; &gt;
<br>&gt;
<br>&gt;
<br>&gt; -- You received this message because you are subscribed to a topic=
 in the Google Groups &quot;Bitcoin Development Mailing List&quot; group. T=
o unsubscribe from this topic, visit <a href=3D"https://groups.google.com/d=
/topic/bitcoindev/Aee8xKuIC2s/unsubscribe" target=3D"_blank" rel=3D"nofollo=
w" data-saferedirecturl=3D"https://www.google.com/url?hl=3Dfr&amp;q=3Dhttps=
://groups.google.com/d/topic/bitcoindev/Aee8xKuIC2s/unsubscribe&amp;source=
=3Dgmail&amp;ust=3D1720920596076000&amp;usg=3DAOvVaw3Glmo0KYIP1UQoAFB0FHzZ"=
>https://groups.google.com/d/topic/bitcoindev/Aee8xKuIC2s/unsubscribe</a>. =
To unsubscribe from this group and all its topics, send an email to <a href=
 data-email-masked rel=3D"nofollow">bitcoindev+...@googlegroups.com</a>. To=
 view this discussion on the web visit <a href=3D"https://groups.google.com=
/d/msgid/bitcoindev/87b4e402-39d8-46b0-8269-4f81fa501627n%40googlegroups.co=
m" target=3D"_blank" rel=3D"nofollow" data-saferedirecturl=3D"https://www.g=
oogle.com/url?hl=3Dfr&amp;q=3Dhttps://groups.google.com/d/msgid/bitcoindev/=
87b4e402-39d8-46b0-8269-4f81fa501627n%2540googlegroups.com&amp;source=3Dgma=
il&amp;ust=3D1720920596076000&amp;usg=3DAOvVaw3ODKMbYIjdlkiGEY6Qvc5b">https=
://groups.google.com/d/msgid/bitcoindev/87b4e402-39d8-46b0-8269-4f81fa50162=
7n%40googlegroups.com</a>.
<br>
<br>-----BEGIN PGP SIGNATURE-----
<br>Version: OpenPGP.js v4.10.3
<br>Comment: <a href=3D"https://openpgpjs.org" target=3D"_blank" rel=3D"nof=
ollow" data-saferedirecturl=3D"https://www.google.com/url?hl=3Dfr&amp;q=3Dh=
ttps://openpgpjs.org&amp;source=3Dgmail&amp;ust=3D1720920596076000&amp;usg=
=3DAOvVaw0KFwnV5M7diyr1ZmUTQMdI">https://openpgpjs.org</a>
<br>
<br>wsBcBAEBCAAGBQJmcJwuAAoJEDEPCKe+At0hjhkIAIdM7QN9hAO0z+KO7Bwe
<br>JT45XyusJmDG1gJbLZtb+SfuE1X5PFDHNTLSNliJWsOImxFCiBPnlXhYQ4B/
<br>8gST3rqplUwkdYr52E5uMxTTq9YaXTako4PNb8d7XfraIwDKXAJF+5Skf4f9
<br>bQUYMieBAFSEXCmluirQymB+hUoaze60Whd07hhpzbGSwK4DdSXltufkyCDE
<br>tJUforNWm8X25ABTSNDh3+if5V/wJuix/u8GJyMHKucaEAO01ki2oyusq2rt
<br>Xe6ysUieclusFFdQAs4PfYxhzXTf5XeAbFga/qxrVtbt7q2nUkYklqteT2pp
<br>mH/DU20HMBeGVSrISrvsmLw=3D
<br>=3D+wat
<br>-----END PGP SIGNATURE-----
<br>
<br></blockquote></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;Bitcoin Development Mailing List&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:bitcoindev+unsubscribe@googlegroups.com">bitcoind=
ev+unsubscribe@googlegroups.com</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/d/msgid/bitcoindev/cd6bda66-39d3-49ca-9f3c-f610258626b0n%40googlegroups.=
com?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.com/d/msg=
id/bitcoindev/cd6bda66-39d3-49ca-9f3c-f610258626b0n%40googlegroups.com</a>.=
<br />

------=_Part_438323_1854552589.1720834459750--

------=_Part_438322_752256595.1720834459750--