-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresearch.go
1496 lines (1490 loc) · 61.7 KB
/
research.go
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
package main
type Tag string
type ConferenceAbbreviation string
const (
PROOF_OF_STAKE Tag = "proof-of-stake"
PROOF_OF_WORK Tag = "proof-of-work"
LIQUID_STAKING Tag = "liquid-staking"
LIGHT_CLIENTS Tag = "light-clients"
INTEROPERABILITY Tag = "interoperability"
WALLETS Tag = "wallets"
PAYMENT_CHANNELS Tag = "payment-channels"
ZERO_KNOWLEDGE Tag = "zero-knowledge"
SIGNATURES Tag = "signatures"
LIGHTNING_NETWORK Tag = "lightning-network"
SMART_CONTRACTS Tag = "smart-contracts"
PVSS Tag = "pvss"
RANDOMNESS Tag = "randomness"
CONSENSUS Tag = "consensus"
// IDENTIFICATION Tag = "identification"
MPC Tag = "mpc"
PRIVACY Tag = "privacy"
FAIRNESS Tag = "fairness"
FRONT_RUNNING Tag = "front-running"
TIMELOCK Tag = "timelock"
UC Tag = "universal-composability"
DEFI Tag = "defi"
COMMITMENTS Tag = "commitments"
OBLIVIOUS_TRANSFER Tag = "oblivious-transfer"
// ANONYMITY Tag = "anonymity"
MEV Tag = "mev"
YOSO Tag = "yoso"
// ROM Tag = "random-oracle"
HOMOMORPHISM Tag = "homomorphism"
BITCOIN Tag = "bitcoin"
VOTING Tag = "voting"
SHARDING Tag = "sharding"
VDF Tag = "verifiable-delay-functions"
WITNESS_ENCRYPTION Tag = "witness-encryption"
DECENTRALIZATION Tag = "decentralization"
// TIMELINESS Tag = "timeliness"
// SUPERSAFETY Tag = "supersafety"
)
var TagToColor = map[Tag]string{
PROOF_OF_STAKE: "#e4cbf4",
PROOF_OF_WORK: "#ffc0c0",
LIQUID_STAKING: "#e6e6fa",
LIGHT_CLIENTS: "#fff3b0",
INTEROPERABILITY: "#a5d0ec",
WALLETS: "#e1ddad",
PAYMENT_CHANNELS: "#c5e2b5",
ZERO_KNOWLEDGE: "#e0b5e9",
SIGNATURES: "#fae2d9",
LIGHTNING_NETWORK: "#d4e2d4",
SMART_CONTRACTS: "#f9e6fa",
PVSS: "#d9e4f5",
RANDOMNESS: "#d1f0fc",
CONSENSUS: "#e8d4b3",
// IDENTIFICATION: "#f6f0c4",
MPC: "#e5dcca",
PRIVACY: "#abc4c7",
FAIRNESS: "#d0f5d0",
FRONT_RUNNING: "#ffe4e9",
TIMELOCK: "#b3e6ff",
UC: "#ffd9cc",
DEFI: "#e8ccf5",
COMMITMENTS: "#ffead4",
OBLIVIOUS_TRANSFER: "#a8e8e8",
// ANONYMITY: "#c7d2d9",
MEV: "#f3b0e0",
YOSO: "#ffd1b3",
// ROM: "#8cd1a4",
HOMOMORPHISM: "#e6a1a1",
BITCOIN: "#ffb732",
VOTING: "#d4b39e",
SHARDING: "#b0a8f5",
VDF: "#c2c2d1",
WITNESS_ENCRYPTION: "#ffd4e6",
DECENTRALIZATION: "#f0deba",
// TIMELINESS: "#fabf8b",
// SUPERSAFETY: "#1fea33",
}
const (
FC ConferenceAbbreviation = "FC"
FCWTS ConferenceAbbreviation = "FCWTS"
AFT ConferenceAbbreviation = "AFT"
CRYPTO ConferenceAbbreviation = "CRYPTO"
EUROCRYPT ConferenceAbbreviation = "EUROCRYPT"
ACNS ConferenceAbbreviation = "ACNS"
CSF ConferenceAbbreviation = "CSF"
PKC ConferenceAbbreviation = "PKC"
CCS ConferenceAbbreviation = "CCS"
ASIACRYPT ConferenceAbbreviation = "ASIACRYPT"
IJCSIT ConferenceAbbreviation = "IJCSIT"
IJCSE ConferenceAbbreviation = "IJCSE"
REVISTA ConferenceAbbreviation = "Revista Telecommun"
CANS ConferenceAbbreviation = "CANS"
EPRINT ConferenceAbbreviation = "ePrint"
PROVSEC ConferenceAbbreviation = "PROVSEC"
TIFS ConferenceAbbreviation = "TIFS"
ICITS ConferenceAbbreviation = "ICITS"
CTRSA ConferenceAbbreviation = "CTRSA"
ABEAT ConferenceAbbreviation = "ABEAT"
CRYBLOCK ConferenceAbbreviation = "CRYBLOCK"
ICOFCS ConferenceAbbreviation = "ICOFCS"
IEICET ConferenceAbbreviation = "IEICET"
DEC ConferenceAbbreviation = "DEC"
ACISP ConferenceAbbreviation = "ACISP"
ISTT ConferenceAbbreviation = "ISTT"
IWT ConferenceAbbreviation = "IWT"
ITASEC ConferenceAbbreviation = "ITASEC"
SIROCCO ConferenceAbbreviation = "SIROCCO"
ARXIV ConferenceAbbreviation = "arXiv"
ESORICS ConferenceAbbreviation = "ESORICS"
ISAAC ConferenceAbbreviation = "ISAAC"
ALGORITHMICA ConferenceAbbreviation = "ALGORITHMICA"
DPMCBT ConferenceAbbreviation = "DPMCBT"
ICDCS ConferenceAbbreviation = "ICDCS"
SP ConferenceAbbreviation = "S&P"
TOKENOMICS ConferenceAbbreviation = "TOKENOMICS"
MARBLE ConferenceAbbreviation = "MARBLE"
SIGSAC ConferenceAbbreviation = "SIGSAC"
ICBC ConferenceAbbreviation = "ICBC"
SCN ConferenceAbbreviation = "SCN"
SRDS ConferenceAbbreviation = "SRDS"
MIDDLEWARE ConferenceAbbreviation = "MIDDLEWARE"
SSS ConferenceAbbreviation = "SSS"
AAAI ConferenceAbbreviation = "AAAI"
USENIX ConferenceAbbreviation = "USENIX"
FOSAD ConferenceAbbreviation = "FOSAD"
AUCS ConferenceAbbreviation = "AUCS"
SBSEG ConferenceAbbreviation = "SBSEG"
)
var ConferenceAbbreviationToName = map[ConferenceAbbreviation]string{
FC: "Financial Cryptography and Data Security",
FCWTS: "Financial Cryptography and Data Security, Workshop in Trusted Smart Contracts",
AFT: "ACM Advances in Financial Technologies",
CRYPTO: "International Cryptology Conference–CRYPTO",
EUROCRYPT: "International Conference on the Theory and Applications of Cryptographic Techniques–EUROCRYPT",
ACNS: "International Conference on Applied Cryptography and Network Security",
CSF: "IEEE Computer Security Foundations Symposium",
PKC: "Public-Key Cryptography",
CCS: "ACM Conference on Computer and Communications Security",
ASIACRYPT: "International Conference on the Theory and Application of Cryptology and Information Security–ASIACRYPT",
IJCSIT: "International Journal of Computer Science & Information Technology–IJCSIT",
IJCSE: "International Journal of Computer Science and Engineering–IJCSE",
REVISTA: "Revista Telecommun",
CANS: "International Conference on Cryptology And Network Security–CANS",
EPRINT: "Cryptology ePrint Archive",
PROVSEC: "International Conference on Provable Security",
TIFS: "IEEE Transactions on Information Forensics and Security",
ICITS: "International Conference on Information Technology & Systems",
CTRSA: "The Cryptographers' Track at RSA Conference",
ABEAT: "Brazilian Association of High Technology Experts",
CRYBLOCK: "Workshop on Cryptocurrencies and Blockchains",
DEC: "ACM Data Economy Workshop",
ACISP: "Australasian Conference on Information Security and Privacy",
IWT: "International Workshop on Trust",
ITASEC: "Italian Conference on Cybersecurity",
SIROCCO: "International Colloquium on Structural Information and Communication Complexity",
ARXIV: "arXiv",
ESORICS: "European Symposium on Research in Computer Security",
ISAAC: "International Symposium on Algorithms and Computation",
ALGORITHMICA: "Algorithmica",
DPMCBT: "Data Privacy Management, Cryptocurrencies and Blockchain Technology",
ICDCS: "International Conference on Distributed Computing Systems",
SP: "IEEE Symposium on Security and Privacy",
TOKENOMICS: "International Conference on Blockchain Economics, Security and Protocols",
MARBLE: "International Conference on Mathematical Research for Blockchain Economy",
SIGSAC: "ACM Special Interest Group on Security, Audit and Control",
ICBC: "IEEE International Conference on Blockchain and Cryptocurrency",
SCN: "International Conference on Security and Communication Networks",
SRDS: "IEEE Symposium on Reliable Distributed Systems",
MIDDLEWARE: "International Middleware Conference",
SSS: "International Symposium on Stabilization, Safety, and Security of Distributed Systems",
AAAI: "Association for the Advancement of Artificial Intelligence",
USENIX: "USENIX Security Symposium",
FOSAD: "International School on Foundations of Security Analysis and Design",
AUCS: "Aarhus University, Computer Science Department, Dissertation",
SBSEG: "Brazilian Symposium on Information and Computer System Security",
}
var ResearchPapers []ResearchPaper = []ResearchPaper{
{
Handle: "timeliness",
Name: "On-Chain Timestamps Are Accurate",
Conference: FC,
ConferenceYear: 2024,
Authors: []string{"Apostolos Tzinas", "Srivatsan Sridhar", "Dionysis Zindros"},
Url: "https://eprint.iacr.org/2023/1648.pdf",
Tags: []Tag{}, // TIMELINESS, SUPERSAFETY
Citations: 1,
},
{
Handle: "popos",
Name: "Proofs of Proof-of-Stake with Sublinear Complexity",
Conference: AFT,
ConferenceYear: 2023,
Authors: []string{"Shresth Agrawal", "Joachim Neu", "Ertem Nusret Tas", "Dionysis Zindros"},
Url: "https://arxiv.org/pdf/2209.08673.pdf",
Tags: []Tag{PROOF_OF_STAKE, LIGHT_CLIENTS, INTEROPERABILITY},
Citations: 8,
},
{
Handle: "liquid-staking",
Name: "The Principal–Agent Problem in Liquid Staking",
Conference: FCWTS,
ConferenceYear: 2023,
Authors: []string{"Apostolos Tzinas", "Dionysis Zindros"},
Url: "https://eprint.iacr.org/2023/605.pdf",
Tags: []Tag{LIQUID_STAKING},
Citations: 5,
},
{
Handle: "nipopow",
Name: "Non-Interactive Proofs of Proof-of-Work",
Conference: FC,
ConferenceYear: 2020,
Authors: []string{"Aggelos Kiayias", "Andrew Miller", "Dionysis Zindros"},
Url: "https://eprint.iacr.org/2017/963.pdf",
Tags: []Tag{PROOF_OF_WORK, LIGHT_CLIENTS, INTEROPERABILITY},
Citations: 175,
},
{
Handle: "ouroboros",
Name: "Ouroboros: A provably secure proof-of-stake blockchain protocol",
Conference: CRYPTO,
ConferenceYear: 2017,
Authors: []string{"Aggelos Kiayias", "Alexander Russell", "Bernardo David", "Roman Oliynykov"},
Url: "https://eprint.iacr.org/2016/889.pdf",
Tags: []Tag{PROOF_OF_STAKE},
Citations: 1974,
},
{
Handle: "hardware-wallets",
Name: "A formal treatment of hardware wallets",
Conference: FC,
ConferenceYear: 2019,
Authors: []string{"Myrto Arapinis", "Andriana Gkaniatsou", "Dimitris Karakostas", "Aggelos Kiayias"},
Url: "https://eprint.iacr.org/2019/034.pdf",
Tags: []Tag{WALLETS},
Citations: 38,
},
{
Handle: "brick",
Name: "Brick: Asynchronous Incentive-Compatible Payment Channels",
Conference: FC,
ConferenceYear: 2021,
Authors: []string{"Zeta Avarikioti", "Eleftherios Kokoris-Kogias", "Roger Wattenhofer", "Dionysis Zindros"},
Url: "https://arxiv.org/pdf/1905.11360.pdf",
Tags: []Tag{PAYMENT_CHANNELS},
Citations: 70,
},
{
Handle: "zk-arguments",
Name: "Efficient Zero-Knowledge Arguments for Arithmetic Circuits in the Discrete Log Setting",
Conference: EUROCRYPT,
ConferenceYear: 2016,
Authors: []string{"Jonathan Bootle", "Andrea Cerulli", "Pyrros Chaidos", "Jens Groth", "Christophe Petit"},
Url: "https://eprint.iacr.org/2016/263.pdf",
Tags: []Tag{ZERO_KNOWLEDGE},
Citations: 412,
},
{
Handle: "dynamic-group-signatures",
Name: "Foundations of Fully Dynamic Group Signatures",
Conference: ACNS,
ConferenceYear: 2016,
Authors: []string{"Jonathan Bootle", "Andrea Cerulli", "Pyrros Chaidos", "Essam Ghadafi", "Jens Groth"},
Url: "https://eprint.iacr.org/2016/368.pdf",
Tags: []Tag{SIGNATURES},
Citations: 129,
},
{
Handle: "lightning-network-security",
Name: "A Composable Security Treatment of the Lightning Network",
Conference: CSF,
ConferenceYear: 2020,
Authors: []string{"Aggelos Kiayias", "Orfeas Stefanos Thyfronitis Litos"},
Url: "https://eprint.iacr.org/2019/778.pdf",
Tags: []Tag{LIGHTNING_NETWORK},
Citations: 54,
},
{
Handle: "ouroboros-praos",
Name: "Ouroboros Praos: An adaptively-secure, semi-synchronous proof-of-stake blockchain",
Conference: EUROCRYPT,
ConferenceYear: 2018,
Authors: []string{"Bernardo David", "Peter Gaži", "Aggelos Kiayias", "Alexander Russell"},
Url: "https://eprint.iacr.org/2017/573.pdf",
Tags: []Tag{PROOF_OF_STAKE, CONSENSUS},
Citations: 584,
},
{
Handle: "scape",
Name: "SCRAPE: Scalable randomness attested by public entities",
Conference: ACNS,
ConferenceYear: 2017,
Authors: []string{"Ignacio Cascudo", "Bernardo David"},
Url: "https://eprint.iacr.org/2017/216.pdf",
Tags: []Tag{PVSS, RANDOMNESS},
Citations: 172,
},
{
Handle: "constant-sps",
Name: "Constant-size structure-preserving signatures: Generic constructions and simple assumptions",
Conference: ASIACRYPT,
ConferenceYear: 2012,
Authors: []string{"Masayuki Abe", "Melissa Chase", "Bernardo David", "Markulf Kohlweiss", "Ryo Nishimaki", "Miyako Ohkubo"},
Url: "https://eprint.iacr.org/2012/285.pdf",
Tags: []Tag{SIGNATURES},
Citations: 137,
},
{
Handle: "tagged-ots",
Name: "Tagged one-time signatures: Tight security and optimal tag size",
Conference: PKC,
ConferenceYear: 2013,
Authors: []string{"Masayuki Abe", "Bernardo David", "Markulf Kohlweiss", "Ryo Nishimaki", "Miyako Ohkubo"},
Url: "https://eprint.iacr.org/2015/311.pdf",
Tags: []Tag{SIGNATURES},
Citations: 96,
},
{
Handle: "internet-banking-attacks",
Name: "A Formal Classification of Internet Banking Attacks and Vulnerabilities",
Conference: IJCSIT,
ConferenceYear: 2011,
Authors: []string{"Laerte Peotta", "Marcelo Holtz", "Bernardo David", "Flavio Deus", "RT de Sousa"},
Url: "https://airccse.org/journal/jcsit/0211ijcsit13.pdf",
Tags: []Tag{}, // IDENTIFICATION
Citations: 83,
},
{
Handle: "albatross",
Name: "ALBATROSS: Publicly AttestabLe BATched Randomness Based On Secret Sharing",
Conference: ASIACRYPT,
ConferenceYear: 2020,
Authors: []string{"Ignacio Cascudo", "Bernardo David"},
Url: "https://eprint.iacr.org/2020/644.pdf",
Tags: []Tag{RANDOMNESS, PVSS},
Citations: 66,
},
{
Handle: "p2dex",
Name: "P2DEX: privacy-preserving decentralized cryptocurrency exchange",
Conference: ACNS,
ConferenceYear: 2021,
Authors: []string{"Carsten Baum", "Bernardo David", "Tore Kasper Frederiksen"},
Url: "https://eprint.iacr.org/2021/283.pdf",
Tags: []Tag{MPC, PRIVACY, FAIRNESS, FRONT_RUNNING},
Citations: 65,
},
{
Handle: "tardis",
Name: "TARDIS: a foundation of time-lock puzzles in UC",
Conference: EUROCRYPT,
ConferenceYear: 2021,
Authors: []string{"Carsten Baum", "Bernardo David", "Rafael Dowsley", "Jesper Buus Nielsen", "Sabine Oechsner"},
Url: "https://eprint.iacr.org/2020/537.pdf",
Tags: []Tag{TIMELOCK, UC},
Citations: 51,
},
{
Handle: "uc-commitments",
Name: "Rate-1, linear time and additively homomorphic UC commitments",
Conference: CRYPTO,
ConferenceYear: 2016,
Authors: []string{"Ignacio Cascudo", "Ivan Damgård", "Bernardo David", "Nico Döttling", "Jesper Buus Nielsen"},
Url: "https://eprint.iacr.org/2016/137.pdf",
Tags: []Tag{COMMITMENTS, UC},
Citations: 41,
},
{
Handle: "insured-mpc",
Name: "Insured MPC: Efficient secure computation with financial penalties",
Conference: FC,
ConferenceYear: 2020,
Authors: []string{"Carsten Baum", "Bernardo David", "Rafael Dowsley"},
Url: "https://eprint.iacr.org/2018/942.pdf",
Tags: []Tag{MPC, FAIRNESS, UC},
Citations: 48,
},
{
Handle: "map-reduce-ids",
Name: "Building Scalable Distributed Intrusion Detection Systems Based on the MapReduce Framework",
Conference: REVISTA,
ConferenceYear: 2011,
Authors: []string{"Marcelo D Holtz", "Bernardo David", "Rafael Timóteo de Sousa Júnior"},
Url: "https://www.academia.edu/download/61520800/Building_Scalable_Distributed_Intrusion_20191215-6958-g7aso0.pdf",
Tags: []Tag{},
Citations: 38,
},
{
Handle: "vss-homomorphic-uc-commitments",
Name: "Compact VSS and efficient homomorphic UC commitments",
Conference: ASIACRYPT,
ConferenceYear: 2014,
Authors: []string{"Ivan Damgård", "Bernardo David", "Irene Giacomelli", "Jesper Buus Nielsen"},
Url: "https://eprint.iacr.org/2014/370.pdf",
Tags: []Tag{UC, COMMITMENTS, HOMOMORPHISM},
Citations: 37,
},
{
Handle: "lpn-uc-transfer",
Name: "Universally composable oblivious transfer based on a variant of LPN",
Conference: CANS,
ConferenceYear: 2014,
Authors: []string{"Bernardo David", "Rafael Dowsley", "Anderson CA Nascimento"},
Url: "https://dowsley.net/pdf/CANS-DavDowNas14.pdf",
Tags: []Tag{UC, OBLIVIOUS_TRANSFER},
Citations: 39,
},
{
Handle: "uc-rom-oblivious-transfer",
Name: "A Framework for Efficient Adaptively Secure Composable Oblivious Transfer in the ROM",
Conference: EPRINT,
ConferenceYear: 2017,
Authors: []string{"Paulo SLM Barreto", "Bernardo David", "Rafael Dowsley", "Kirill Morozov", "Anderson CA Nascimento"},
Url: "https://eprint.iacr.org/2017/993.pdf",
Tags: []Tag{UC, OBLIVIOUS_TRANSFER}, // ROM
Citations: 40,
},
{
Handle: "private-ml-classification",
Name: "Efficient unconditionally secure comparison and privacy preserving machine learning classification protocols",
Conference: PROVSEC,
ConferenceYear: 2015,
Authors: []string{"Bernardo David", "Rafael Dowsley", "Raj Katti", "Anderson CA Nascimento"},
Url: "https://dowsley.net/pdf/PROVSEC-DDKN15.pdf",
Tags: []Tag{PRIVACY},
Citations: 35,
},
{
Handle: "homomorphic-uc-commitments",
Name: "Additively Homomorphic UC commitments with Optimal Amortized Overhead",
Conference: PKC,
ConferenceYear: 2015,
Authors: []string{"Ignacio Cascudo Pueyo", "Ivan Bjerre Damgård", "Bernardo Machado David", "Irene Giacomelli", "Jesper Buus Nielsen", "Roberto Trifiletti"},
Url: "https://eprint.iacr.org/2014/829.pdf",
Tags: []Tag{UC, COMMITMENTS},
Citations: 33,
},
{
Handle: "craft",
Name: "CRAFT: Composable Randomness Beacons and Output-Independent Abort MPC From Time",
Conference: PKC,
ConferenceYear: 2023,
Authors: []string{"Carsten Baum", "Bernardo David", "Rafael Dowsley", "Ravi Kishore", "Jesper Buus Nielsen", "Sabine Oechsner"},
Url: "https://eprint.iacr.org/2020/784.pdf",
Tags: []Tag{UC, TIMELOCK, VDF, RANDOMNESS},
Citations: 34,
},
{
Handle: "front-running-sok",
Name: "SoK: Mitigation of front-running in decentralized finance",
Conference: FC,
ConferenceYear: 2022,
Authors: []string{"Carsten Baum", "James Hsin-yu Chiang", "Bernardo David", "Tore Kasper Frederiksen", "Lorenzo Gentile"},
Url: "https://eprint.iacr.org/2021/1628.pdf",
Tags: []Tag{DEFI, FRONT_RUNNING, MEV},
Citations: 34,
},
{
Handle: "anonymous-timelock",
Name: "Encryption to the future: a paradigm for sending secret messages to future (anonymous) committees",
Conference: ASIACRYPT,
ConferenceYear: 2022,
Authors: []string{"Matteo Campanelli", "Bernardo David", "Hamidreza Khoshakhlagh", "Anders Konring", "Jesper Buus Nielsen"},
Url: "https://eprint.iacr.org/2021/1423.pdf",
Tags: []Tag{TIMELOCK, WITNESS_ENCRYPTION},
Citations: 35,
},
{
Handle: "gearbox",
Name: "GearBox: An Efficient UC Sharded Ledger Leveraging the Safety-Liveness Dichotomy.",
Conference: CCS,
ConferenceYear: 2022,
Authors: []string{"Bernardo David", "Bernardo Magri", "Christian Matt", "Jesper Buus Nielsen", "Daniel Tschudi"},
Url: "https://eprint.iacr.org/2021/211.pdf",
Tags: []Tag{UC, SHARDING},
Citations: 34,
},
{
Handle: "kaleidoscope",
Name: "Kaleidoscope: An efficient poker protocol with payment distribution and penalty enforcement",
Conference: FC,
ConferenceYear: 2018,
Authors: []string{"Bernardo David", "Rafael Dowsley", "Mario Larangeira"},
Url: "https://eprint.iacr.org/2017/899.pdf",
Tags: []Tag{MPC},
Citations: 23,
},
{
Handle: "uc-private-linear-algebra",
Name: "Unconditionally secure, universally composable privacy preserving linear algebra",
Conference: TIFS,
ConferenceYear: 2015,
Authors: []string{"Bernardo David", "Rafael Dowsley", "Jeroen van de Graaf", "Davidson Marques", "Anderson CA Nascimento", "Adriana CB Pinto"},
Url: "https://dowsley.net/pdf/IEEEIFS-DDGM+16.pdf",
Tags: []Tag{UC, PRIVACY},
Citations: 22,
},
{
Handle: "yolo-yoso",
Name: "YOLO YOSO: Fast and simple encryption and secret sharing in the YOSO model",
Conference: ASIACRYPT,
ConferenceYear: 2022,
Authors: []string{"Ignacio Cascudo", "Bernardo David", "Lydia Garms", "Anders Konring"},
Url: "https://eprint.iacr.org/2022/242.pdf",
Tags: []Tag{PVSS, YOSO}, // ANONYMITY
Citations: 22,
},
{
Handle: "uc-oblivious-transfer",
Name: "Universally composable oblivious transfer from lossy encryption and the McEliece assumptions",
Conference: ICITS,
ConferenceYear: 2012,
Authors: []string{"Bernardo Machado David", "Anderson CA Nascimento", "Jörn Müller-Quade"},
Url: "https://link.springer.com/chapter/10.1007/978-3-642-32284-6_5",
Tags: []Tag{UC, OBLIVIOUS_TRANSFER},
Citations: 16,
},
{
Handle: "honeypot-blind-malicious-activity-detection",
Name: "Blind automatic malicious activity detection in honeypot data",
Conference: ICOFCS,
ConferenceYear: 2011,
Authors: []string{"Bernardo Machado David", "JPCL da Costa", "Anderson CA Nascimento", "Dino Amaral", "MD Holtz", "RT de Sousa Jr"},
Url: "https://lasp.unb.br/wp-content/uploads/papers/ICoFCS2011-PP16.pdf",
Tags: []Tag{},
Citations: 15,
},
{
Handle: "eagle",
Name: "Eagle: Efficient privacy preserving smart contracts",
Conference: FC,
ConferenceYear: 2023,
Authors: []string{"Carsten Baum", "James Hsin-yu Chiang", "Bernardo David", "Tore Kasper Frederiksen"},
Url: "https://eprint.iacr.org/2022/1435.pdf",
Tags: []Tag{SMART_CONTRACTS, MPC},
Citations: 16,
},
{
Handle: "uc-homomorphic-commitments",
Name: "Efficient UC Commitment Extension with Homomorphism for Free (and Applications)",
Conference: ASIACRYPT,
ConferenceYear: 2019,
Authors: []string{"Ignacio Cascudo", "Ivan Damgård", "Bernardo David", "Nico Döttling", "Rafael Dowsley", "Irene Giacomelli"},
Url: "https://eprint.iacr.org/2018/983.pdf",
Tags: []Tag{UC, HOMOMORPHISM},
Citations: 13,
},
{
Handle: "royale",
Name: "ROYALE: a framework for universally composable card games with financial rewards and penalties enforcement",
Conference: FC,
ConferenceYear: 2019,
Authors: []string{"Bernardo David", "Rafael Dowsley", "Mario Larangeira"},
Url: "https://eprint.iacr.org/2018/157.pdf",
Tags: []Tag{UC, FAIRNESS},
Citations: 14,
},
{
Handle: "mars",
Name: "MARS: Monetized Ad-hoc Routing System (A Position Paper)",
Conference: CRYBLOCK,
ConferenceYear: 2018,
Authors: []string{"Bernardo David", "Rafael Dowsley", "Mario Larangeira"},
Url: "https://dl.acm.org/doi/10.1145/3211933.3211948",
Tags: []Tag{},
Citations: 12,
},
{
Handle: "improved-honeypot-blind-malicious-activity-detection",
Name: "Improved blind automatic malicious activity detection in honeypot data",
Conference: ICOFCS,
ConferenceYear: 2012,
Authors: []string{"JPCL da Costa", "Edison Pignaton de Freitas", "Bernardo Machado David", "AM Rubio Serrano", "Dino Amaral", "RT Sousa Júnior"},
Url: "http://www.icofcs.org/2012/ICoFCS2012_08.pdf",
Tags: []Tag{},
Citations: 12,
},
{
Handle: "fast",
Name: "FAST: Fair Auctions via Secret Transactions",
Conference: ACNS,
ConferenceYear: 2022,
Authors: []string{"Bernardo David", "Lorenzo Gentile", "Mohsen Pourpouneh"},
Url: "https://eprint.iacr.org/2021/264.pdf",
Tags: []Tag{FAIRNESS, PRIVACY},
Citations: 13,
},
{
Handle: "uc-private-proximity-testing",
Name: "Universally composable private proximity testing",
Conference: PROVSEC,
ConferenceYear: 2011,
Authors: []string{"Rafael Tonicelli", "Bernardo Machado David", "Vinícius de Morais Alves"},
Url: "https://link.springer.com/chapter/10.1007/978-3-642-24316-5_16",
Tags: []Tag{UC, PRIVACY},
Citations: 11,
},
{
Handle: "secure-sso",
Name: "A framework for secure single sign-on",
Conference: EPRINT,
ConferenceYear: 2011,
Authors: []string{"Bernardo Machado David", "Anderson CA Nascimento", "Rafael Tonicelli"},
Url: "https://eprint.iacr.org/2011/246.pdf",
Tags: []Tag{},
Citations: 9,
},
{
Handle: "mt-random",
Name: "Mt. Random: Multi-tiered randomness beacons",
Conference: ACNS,
ConferenceYear: 2023,
Authors: []string{"Ignacio Cascudo", "Bernardo David", "Omer Shlomovits", "Denis Varlakov"},
Url: "https://eprint.iacr.org/2021/1096.pdf",
Tags: []Tag{RANDOMNESS, PVSS},
Citations: 9,
},
{
Handle: "oblivious-transfer-from-mceliece",
Name: "Efficient fully simulatable oblivious transfer from the McEliece assumptions",
Conference: IEICET,
ConferenceYear: 2012,
Authors: []string{"Bernardo Machado David", "Anderson CA Nascimento", "Rafael T de Sousa"},
Url: "https://ieeexplore.ieee.org/document/6089575",
Tags: []Tag{},
Citations: 7,
},
{
Handle: "papr",
Name: "PAPR: Publicly auditable privacy revocation for anonymous credentials",
Conference: CTRSA,
ConferenceYear: 2023,
Authors: []string{"Joakim Brorsson", "Bernardo David", "Lorenzo Gentile", "Elena Pagnin", "Paul Stankovski Wagner"},
Url: "https://eprint.iacr.org/2023/137.pdf",
Tags: []Tag{PRIVACY},
Citations: 10,
},
{
Handle: "generalizing-mpc",
Name: "Generalizing efficient multiparty computation",
Conference: ICITS,
ConferenceYear: 2015,
Authors: []string{"Bernardo M David", "Ryo Nishimaki", "Samuel Ranellucci", "Alain Tapp"},
Url: "https://eprint.iacr.org/2015/135.pdf",
Tags: []Tag{MPC, OBLIVIOUS_TRANSFER, UC},
Citations: 6,
},
{
Handle: "pca-based-malicious-activity-detection",
Name: "A Parallel Approach to PCA Based Malicious Activity Detection in Distributed Honeypot Data",
Conference: ABEAT,
ConferenceYear: 2011,
Authors: []string{"Bernardo Machado David", "João Paulo Carvalho Lustosa da Costa", "Anderson Clayton Alves Nascimento", "Marcelo Dias Holtz", "Dino Macedo Amaral", "Rafael Timóteo de Sousa Júnior"},
Url: "http://www.realp.unb.br/jspui/bitstream/10482/10985/1/ARTIGO_ParallelApproachPCA.pdf",
Tags: []Tag{},
Citations: 7,
},
{
Handle: "uc-verifiability-without-adaptivity-or-zk",
Name: "(Public) Verifiability for Composable Protocols Without Adaptivity or Zero-Knowledge",
Conference: PROVSEC,
ConferenceYear: 2022,
Authors: []string{"Carsten Baum", "Bernardo David", "Rafael Dowsley"},
Url: "https://eprint.iacr.org/2020/207.pdf",
Tags: []Tag{UC},
Citations: 5,
},
{
Handle: "21",
Name: "21-bringing down the complexity: fast composable protocols for card games without secret state",
Conference: ACISP,
ConferenceYear: 2018,
Authors: []string{"Bernardo David", "Rafael Dowsley", "Mario Larangeira"},
Url: "https://eprint.iacr.org/2018/303.pdf",
Tags: []Tag{MPC, UC},
Citations: 6,
},
{
Handle: "bayesian-trust-model-for-mac-in-802-15-4",
Name: "A Bayesian Trust Model for the MAC Layer in IEEE 802.15.4 Networks",
Conference: ISTT,
ConferenceYear: 2010,
Authors: []string{"Bernardo Machado David", "Rafael Timoteo de Sousa Jr"},
Url: "http://www.inf.ufsc.br/~bosco.sobral/downloads/I2TS%202010%20CD%20Proceedings/www.i2ts.org/papers/full_english/78855_1.pdf",
Tags: []Tag{},
Citations: 5,
},
{
Handle: "sok-privacy-in-finance",
Name: "SoK: Privacy-Enhancing Technologies in Finance",
Conference: AFT,
ConferenceYear: 2023,
Authors: []string{"Carsten Baum", "James Hsin-yu Chiang", "Bernardo David", "Tore Kasper Frederiksen"},
Url: "https://eprint.iacr.org/2023/122.pdf",
Tags: []Tag{DEFI, MPC, PRIVACY, ZERO_KNOWLEDGE},
Citations: 9,
},
{
Handle: "trust-model-for-mac-in-lr-wpans",
Name: "A Context-Dependent Trust Model for the MAC Layer in LR-WPANs",
Conference: IJCSE,
ConferenceYear: 2010,
Authors: []string{"Bernardo M David", "Beatriz Santana", "Laerte Peotta", "Marcelo D Holtz", "Rafael Timóteo de Sousa Jr"},
Url: "https://www.researchgate.net/profile/Rafael-De-Sousa-Junior/publication/50235175_A_Context-Dependent_Trust_Model_for_the_MAC_Layer_in_LR-WPANs_Bernardo_M_David_Beatriz_Santana_Laerte_Peotta_Marcelo_D_Holtz/links/549081910cf2d1800d866a6d/A-Context-Dependent-Trust-Model-for-the-MAC-Layer-in-LR-WPANs-Bernardo-M-David-Beatriz-Santana-Laerte-Peotta-Marcelo-D-Holtz.pdf",
Tags: []Tag{},
Citations: 4,
},
{
Handle: "mpc-over-layered-graphs",
Name: "Perfect MPC over Layered Graphs",
Conference: CRYPTO,
ConferenceYear: 2023,
Authors: []string{"Bernardo David", "Giovanni Deligios", "Aarushi Goel", "Yuval Ishai", "Anders Konring", "Eyal Kushilevitz", "Chen-Da Liu-Zhang", "Varun Narayanan"},
Url: "https://eprint.iacr.org/2023/330.pdf",
Tags: []Tag{MPC, YOSO},
Citations: 6,
},
{
Handle: "uc-oblivious-transfer-from-cdh",
Name: "Efficient Composable Oblivious Transfer from CDH in the Global Random Oracle Model",
Conference: CANS,
ConferenceYear: 2020,
Authors: []string{"Bernardo David", "Rafael Dowsley"},
Url: "https://eprint.iacr.org/2020/1291.pdf",
Tags: []Tag{OBLIVIOUS_TRANSFER, UC},
Citations: 3,
},
{
Handle: "map-reduce-intrusion-detection-architecture",
Name: "An architecture for distributed Network Intrusion Detection Based on the Map-Reduce Framework",
Conference: IWT,
ConferenceYear: 2011,
Authors: []string{"Marcelo D Holtz", "Bernardo M David", "Laerte Peotta", "RT de Sousa Jr"},
Url: "https://www.researchgate.net/publication/52011678_An_architecture_for_distributed_Network_Intrusion_Detection_Based_on_the_Map-Reduce_Framework",
Tags: []Tag{},
Citations: 2,
},
{
Handle: "decentralized-info-market",
Name: "A Decentralized Information Marketplace Preserving Input and Output Privacy",
Conference: DEC,
ConferenceYear: 2023,
Authors: []string{"Steven Golob", "Sikha Pentyala", "Rafael Dowsley", "Bernardo David", "Mario Larangeira", "Martine De Cock", "Anderson Nascimento"},
Url: "https://dl.acm.org/doi/pdf/10.1145/3600046.3600047",
Tags: []Tag{PRIVACY, MPC},
Citations: 1,
},
{
Handle: "fairpos",
Name: "FairPoS: Input Fairness in Permissionless Consensus",
Conference: AFT,
ConferenceYear: 2023,
Authors: []string{"James Hsin-yu Chiang", "Bernardo David", "Ittay Eyal", "Tiantian Gong"},
Url: "https://eprint.iacr.org/2022/1442.pdf",
Tags: []Tag{PROOF_OF_STAKE, FRONT_RUNNING},
Citations: 7,
},
{
Handle: "co-differential-privacy",
Name: "Correlated-Output Differential Privacy and Applications to Dark Pools",
Conference: EPRINT,
ConferenceYear: 2023,
Authors: []string{"James Hsin-yu Chiang", "Bernardo David", "Mariana Gama", "Christian Janos Lebeda"},
Url: "https://eprint.iacr.org/2023/943.pdf",
Tags: []Tag{DEFI, MPC},
Citations: 2,
},
{
Handle: "voting-diff-privacy",
Name: "Local Differential Privacy in Voting",
Conference: ITASEC,
ConferenceYear: 2023,
Authors: []string{"Rosario Giustolisi", "Bernardo David", "Victor Mortensen", "Morten Pedersen"},
Url: "https://ceur-ws.org/Vol-3488/paper16.pdf",
Tags: []Tag{VOTING, PRIVACY},
Citations: 0,
},
{
Handle: "updatable-private-blueprints",
Name: "Updatable Privacy-Preserving Blueprints",
Conference: EPRINT,
ConferenceYear: 2023,
Authors: []string{"Bernardo David", "Felix Engelmann", "Tore Frederiksen", "Markulf Kohlweiss", "Elena Pagnin", "Mikhail Volkhov"},
Url: "https://eprint.iacr.org/2023/1787.pdf",
Tags: []Tag{PRIVACY, ZERO_KNOWLEDGE},
Citations: 0,
},
{
Handle: "pvss-over-class-groups",
Name: "Publicly Verifiable Secret Sharing over Class Groups and Applications to DKG and YOSO",
Conference: EUROCRYPT,
ConferenceYear: 2024,
Authors: []string{"Ignacio Cascudo", "Bernardo David"},
Url: "https://eprint.iacr.org/2023/1651.pdf",
Tags: []Tag{PVSS, MPC, YOSO},
Citations: 3,
},
{
Handle: "cascade",
Name: "CaSCaDE: (Time-Based) Cryptography from Space Communications DElay",
Conference: EPRINT,
ConferenceYear: 2023,
Authors: []string{"Carsten Baum", "Bernardo David", "Elena Pagnin", "Akira Takahashi"},
Url: "https://eprint.iacr.org/2023/405.pdf",
Tags: []Tag{TIMELOCK, VDF},
Citations: 0,
},
{
Handle: "uc-homomorphic-commitments",
Name: "A Framework For Efficient Homomorphic Universally Composable Commitments",
Conference: AUCS,
ConferenceYear: 2016,
Authors: []string{"Bernardo Machado David"},
Url: "https://pure.au.dk/ws/portalfiles/portal/114777545/Bernardo_Machado_Davids_thesis.pdf",
Tags: []Tag{UC, COMMITMENTS},
Citations: 0,
},
{
Handle: "uc-committed-oblivious-transfer-with-trusted-initializer",
Name: "Universally Composable Committed Oblivious Transfer With A Trusted Initializer",
Conference: SBSEG,
ConferenceYear: 2012,
Authors: []string{"Adriana CB Pinto", "Bernardo Machado David", "Jeroen van de Graaf", "Anderson CA Nascimento"},
Url: "https://sol.sbc.org.br/index.php/sbseg/article/download/20541/20368",
Tags: []Tag{OBLIVIOUS_TRANSFER, UC},
Citations: 0,
},
{
Handle: "fully-simulatable-oblivious-transfer",
Name: "Obtaining Efficient Fully Simulatable Oblivious Transfer from General Assumptions",
Conference: SBSEG,
ConferenceYear: 2011,
Authors: []string{"Bernardo M David", "Anderson CA Nascimento", "Rafael Tonicelli"},
Url: "https://sol.sbc.org.br/index.php/sbseg/article/download/20567/20394",
Tags: []Tag{OBLIVIOUS_TRANSFER},
Citations: 0,
},
{
Handle: "cerberus-channels",
Name: "Cerberus Channels: Incentivizing Watchtowers for Bitcoin",
Conference: FC,
ConferenceYear: 2020,
Authors: []string{"Zeta Avarikioti", "Orfeas Stefanos Thyfronitis Litos", "Roger Wattenhofer"},
Url: "https://eprint.iacr.org/2019/1092.pdf",
Tags: []Tag{PAYMENT_CHANNELS, BITCOIN},
Citations: 62,
},
{
Handle: "divide-and-scale",
Name: "Divide & Scale: Formalization and Roadmap to Robust Sharding",
Conference: SIROCCO,
ConferenceYear: 2023,
Authors: []string{"Zeta Avarikioti", "Antoine Desjardins", "Lefteris Kokoris-Kogias", "Roger Wattenhofer"},
Url: "https://drive.google.com/file/d/1EKbY-8rCNj7zDTuVYcj5WAiFX2hYwqai/view",
Tags: []Tag{SHARDING},
Citations: 47,
},
{
Handle: "secure-and-efficient-payment-channels",
Name: "Towards secure and efficient payment channels",
Conference: ARXIV,
ConferenceYear: 2018,
Authors: []string{"Zeta Avarikioti", "Felix Laufenberg", "Jakub Sliwinski", "Yuyi Wang", "Roger Wattenhofer"},
Url: "https://arxiv.org/pdf/1811.12740.pdf",
Tags: []Tag{PAYMENT_CHANNELS, BITCOIN},
Citations: 39,
},
{
Handle: "ride-the-lightning",
Name: "Ride the lightning: The game theory of payment channels",
Conference: FC,
ConferenceYear: 2020,
Authors: []string{"Zeta Avarikioti", "Lioba Heimbach", "Yuyi Wang", "Roger Wattenhofer"},
Url: "https://arxiv.org/pdf/1912.04797.pdf",
Tags: []Tag{PAYMENT_CHANNELS},
Citations: 38,
},
{
Handle: "payment-network-with-fees",
Name: "Payment network design with fees",
Conference: ESORICS,
ConferenceYear: 2018,
Authors: []string{"Zeta Avarikioti", "Gerrit Janssen", "Yuyi Wang", "Roger Wattenhofer"},
Url: "https://arxiv.org/pdf/1810.07585.pdf",
Tags: []Tag{}, //keywords: blockchain, layer 2, channels, lightning protocol
Citations: 32,
},
{
Handle: "darknet",
Name: "Structure and content of the visible Darknet",
Conference: ARXIV,
ConferenceYear: 2018,
Authors: []string{"Zeta Avarikioti", "Roman Brunner", "Aggelos Kiayias", "Roger Wattenhofer", "Dionysis Zindros"},
Url: "https://arxiv.org/pdf/1811.01348.pdf",
Tags: []Tag{},
Citations: 26,
},
{
Handle: "fnf-bft",
Name: "FnF-BFT: A BFT Protocol with Provable Performance Under Attack",
Conference: SIROCCO,
ConferenceYear: 2023,
Authors: []string{"Zeta Avarikioti", "Lioba Heimbach", "Roland Schmid", "Laurent Vanbever", "Roger Wattenhofer", "Patrick Wintermeyer"},
Url: "https://tik-old.ee.ethz.ch/file/34168cbbbcfa75bf48c87a84844b3ae9/FnF_BFT__SIROCCO_2023_-1.pdf",
Tags: []Tag{},
Citations: 29,
},
{
Handle: "bitcoin-temporary-dishonest-majority",
Name: "Bitcoin Security under Temporary Dishonest Majority",
Conference: FC,
ConferenceYear: 2019,
Authors: []string{"Zeta Avarikioti", "Lukas Käppeli", "Yuyi Wang", "Roger Wattenhofer"},
Url: "https://arxiv.org/pdf/1908.00427.pdf",
Tags: []Tag{}, //keywords : Bitcoin, Security, Dishonest Majority, Offline Players, Sleepy Model
Citations: 23,
},
{
Handle: "hide-and-seek",
Name: "Hide & Seek: Privacy-Preserving Rebalancing on Payment Channel Networks",
Conference: FC,
ConferenceYear: 2022,
Authors: []string{"Zeta Avarikioti", "Krzysztof Pietrzak", "Iosif Salem", "Stefan Schmid", "Samarth Tiwari", "Michelle Yeo"},
Url: "https://arxiv.org/pdf/2110.08848.pdf",
Tags: []Tag{}, //keywords : Payment Channel Networks, Privacy, Rebalancing.
Citations: 25,
},
{
Handle: "tx-chain",
Name: "TxChain: Efficient Cryptocurrency Light Clients via Contingent Transaction Aggregation",
Conference: DPMCBT,
Authors: []string{"Alexei Zamyatin", "Zeta Avarikioti", "Daniel Perez", "William J. Knottenbelt"},
Url: "https://eprint.iacr.org/2020/580.pdf",
Tags: []Tag{LIGHT_CLIENTS},
Citations: 15,
},
{
Handle: "payment-networks-as-creation-games",
Name: "Payment Networks as Creation Games",
Conference: DPMCBT,
Authors: []string{"Zeta Avarikioti", "Rolf Scheuner", "Roger Wattenhofer"},
Url: "https://arxiv.org/pdf/1908.00436.pdf",
Tags: []Tag{PAYMENT_CHANNELS},
Citations: 15,
},
{
Handle: "algorithmic-channel-design",
Name: "Algorithmic channel design",
Conference: ISAAC,
ConferenceYear: 2018,
Authors: []string{"Zeta Avarikioti", "Yuyi Wang", "Roger Wattenhofer"},
Url: "https://www.research-collection.ethz.ch/bitstream/handle/20.500.11850/336835/1/LIPIcs-ISAAC-2018-16.pdf",
Tags: []Tag{PAYMENT_CHANNELS},
Citations: 17,
},
{
Handle: "high-dimensional-approximate-r-nets",
Name: "High-dimensional approximate r-nets",
Conference: ALGORITHMICA,
ConferenceYear: 2020,
Authors: []string{"Zeta Avarikioti", "Ioannis Z Emiris", "Loukas Kavouras", "Ioannis Psarros"},
Url: "https://epubs.siam.org/doi/pdf/10.1137/1.9781611974782.2",
Tags: []Tag{},
Citations: 7,
},
{
Handle: "approximate-near-neighbors-in-high-dimension",
Name: "Practical linear-space Approximate Near Neighbors in high dimension",
Conference: ARXIV,
ConferenceYear: 2016,
Authors: []string{"Zeta Avarikioti", "Ioannis Z Emiris", "Ioannis Psarros", "Georgios Samaras"},
Url: "https://arxiv.org/pdf/1612.07405.pdf",
Tags: []Tag{},
Citations: 7,
},
{
Handle: "game-theoretic-analysis-of-off-chain-protocols",
Name: "Towards a game-theoretic security analysis of off-chain protocols",
Conference: CSF,
ConferenceYear: 2023,
Authors: []string{"Sophie Rain", "Zeta Avarikioti", "Laura Kovács", "Matteo Maffei"},
Url: "https://arxiv.org/pdf/2109.07429.pdf",
Tags: []Tag{},
Citations: 11,
},
{
Handle: "suborn-channels",
Name: "Suborn Channels: Incentives Against Timelock Bribes",
Conference: FC,
ConferenceYear: 2022,