-
Notifications
You must be signed in to change notification settings - Fork 6
/
vectors.txt
4743 lines (4416 loc) · 305 KB
/
vectors.txt
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
# Vectors generated by https://github.com/titanous/noise
handshake=Noise_NN_25519_AESGCM_SHA256
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484662529efae98611941ab23ad370919a7f5
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=a0193b62b90fb3497108ec8adcc340a49ebb0a07f1654d71f7e38361f57ba5
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=b2afdcb051e896fa5b6a23def5ee6bdd6032f1b39b2d22ef7da01857648389
handshake=NoisePSK_NN_25519_AESGCM_SHA256
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254795cbdd0fc5cb653fd57ab7db764648dfa8cd770c7fb01275298
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846683ac97628c75639f1efec065ea0ec6097eb8da41f38ca9e9aefd
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=05d64d01e7554bdfb6ecb4f013d8c9a28db5cf2f624628217e5eefca0f3278
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=afdaac3e3f0b3d90d5f0d2d5501325bc80fba229dc4763292f2ddc1c48b724
handshake=Noise_KN_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466fc79472c53cf5dde06842c7bbaddce7a78d729b83d1579fee94c
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=d8eb7e92e6ffa800b669953e5a1b99fe268df1161d7293a1c1836f7dd2d55b
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=009f1432e8414277b5ddf687ae0daf50f76e24c5ed30b0d1e4af53544c70ad
handshake=NoisePSK_KN_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a871312c9b4bc8195a19943c626b0764
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669bb879a11ca3867c84a98406b249f1c7
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=ddf57ef89c271081414956026629df2a27dcb38213741c58d9faa1b6982b04
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=6a99cf571b6c9ec08565d87685ceb97ed9f5bc20e87b2fe8338d11622077da
handshake=Noise_NK_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f256569b87bb96d615490cfa4ca93b30
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664918946d495163ba4efd4dfea52402eb
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=95922788fcef822a17b42f450fa14d05d8e6a4377ca0aea3b4804f03db74a2
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=0976cd4a786c253b37489b6bc3867b2df0dddf9f939b218da54092c6d3eca4
handshake=NoisePSK_NK_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f69cea14604a7ba7f19218cd42295c46a8ce076f48b9a12a0ce5
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846606d70f5e824a6942f72a177d29cfdf825d468214a266b8e08bd7
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=146799b31c2736cc57cac4c37e67c881b184d48dbc72053de8b74c469a3611
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=f27c9511582f8a695b85c9e9cb4dcffa1157d97d2d89b25a032e57032baac9
handshake=Noise_KK_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254f076403f2e0cdd201c5a743d4aab448e6e3b29d4aa05628a5cbd
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f12abbcda56565bf3fa37b196488daf515b7434096aa1638346b
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=0e79035855cdea04bc833d5ff63291042c6e12b0ac55ef2c4096deed1cbac2
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=c6dbcc2ac8f85338732b71a58f4c3be89bdfa7b2da8a8506ec4f1d2d9299a0
handshake=NoisePSK_KK_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254740aed160af0aa4b759f4f31d9bf8699
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667b40e0346c430400dbf394e703472c11
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=6666a9c3dc57f3284705729f076c7228a76e9fa367e3475b5ee2cf3e2ba163
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=e1cf1c48bfeea294d7e9978f81e3065e7436fc0213f1fb5380c42fa8fcfbc2
handshake=Noise_NE_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546f24cf03d8e391c2d59de663efb2667a
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672eeefc006ab25d0e4307e4444352fd4
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=f7cfd31a09ed690b3291c31d3ab58480249f852eacd3cb0544c66ba9b725e8
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=1ab61913743f8ecd677bb514c7d6215e742dca34621b2fbdf6969adf2c4030
handshake=NoisePSK_NE_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254091b7bd25aef4af8e01d3f0340d7ef03e2ed903ae8df03d49906
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664209b646099d1000a3d26c4cdb2e2dcdadbf82b51493fa1bbeb3
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=e460c19ee54d679687268a4f81800234d3fb9bb37c43178f6a99738b484ab6
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=77d93203f5af4445e93a9d4f2247903b57619a479829db766fe4390cddfa7d
handshake=Noise_KE_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254c3eb8d20f3acd634d0f1cb3339d860ea0cbd66b4f385fa58f66b
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666c7cbc5f4f14d4f4dccbc6d71a1f5e5a84fed633ac85eb5498e1
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=c54f364569d4bbab897e4650ab94afe0da21cdcbafbb420776853feec5cdd7
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=5edee04ce62378a79c99f6982daa5136e1775d2a5430744aec4104aae14c1d
handshake=NoisePSK_KE_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254dc3ad05bf4d070710a88b986031e520e
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ee06be6f4a38258732197ab59ef6ec76
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=69364f253a2c2a2f7d2fa0c745a169d9946bb725599515a4f49824a78581ad
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=863c50c0f32f1423f9c89365b1f9d9147dcf067a803970cabfddba44aa1050
handshake=Noise_NX_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ba1de7566c661eeed804d8fba1bcf3071d59a4a7ee2095ae6e8d813b554ad81e607b7c6987c60ff865c745b0c6ef765be0580f5484546cf94bd3ecb0d2298226
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=947e1b1a2798ef97094d7dbccd7244c92baf5e4d8b0e7ed5da78fbe1fdac76
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=ed42482e9b09e2f97dc931e1444f9d7a8b51241108b41cab53474327500596
handshake=NoisePSK_NX_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254277c677c75058b721d4afcbc489a3dc2ab42bce9a6334f51be2c
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c2381c3d6db08f6e9a39639e2c3346ec19090938cf80efb6190b51a3631cb53221419ea9039de7df1306da9129b02c8f0703b84f61dff3a714551db7fa008af7ad3dc861fb1013dd1f65
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=90c105996571e3100f7e9bdbdfd95403d751825ae1bb29a65fd947be844804
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=0460c778dd44d0887cc9a179d3139cfbe779151c13c3459ea3c19c27b4f0df
handshake=Noise_KX_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846651b9d60eb501f5efa797765be5facecd1b54777890c04bcbd4c363392ec8020c7c436998be9c91ef0b5bf378deb15d158ad2715f430663cbef34c07c8fffbbe6e1d06b86643854167c10
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=cef18cc9c074b7b65b0876c13b23ac88a40d8f0508e88ce059511c69cafe8e
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=2cb3ee4126b92633a230fa828a5d01e20577ad6957dbab9f547a0d321da1aa
handshake=NoisePSK_KX_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625494f066daffb2d6af576379ed87735fad
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b7a4d1e877a459cc7af7155f03a6dd2beb4e5e16e09a51a6f2f408e7ea896b2124d8fd528ba52d8bd4648def67536f92e8c05c20822f2f9f625677960cec09a4
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=c5c233854f3902c7fc2440ac68b861cbd1c36c91a195bd696e080575138aef
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=e4fe3731583ff29bed9a9a68fde450dd2a3f075ea549db527e009c57ccefae
handshake=Noise_XN_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e7d5bc062725904d0e112526293811b9
msg_2_payload=
msg_2_ciphertext=503a8b472892ad3f5b51559452113c16ed3e184c13f944444437a34e31f439ff302f7d08f2b456cefb4b1898b3d59dc7b2c227d1b5776db819a910a3ada6f410
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=6233ac2185ec7af41983156d39699d8449548f0b481d6d0749496ffa362e5e
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=085d31a2a8dfa0451b2080d1b516bf21503bd2abba540af2b97baad8ac7d60
handshake=NoisePSK_XN_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625426c916182931f4288c26861af2bfbb8926cb0d2fea563e8a93b0
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e304cb6c5cd040e98afe940a1239505546bd6f3c34c3821d92a1
msg_2_payload=746573745f6d73675f32
msg_2_ciphertext=40cebb3e87e509c50f9b9e2e6d051ea547936403b19b71ce78bd4da3dcc729560bc5a7a1ab52a78639f6cc71e8c6504e72aa0751961b7ce1fac14ae910ff5da082ecd1caaf3a4ae5aa5d
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=700301db9b691a49812686011e9538353cddcdc88b5646fa6bfe34dbcb745c
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=f4ed1932543ea0aee31ccfdcbc124fdbef38359c46c7a22cee1502c20a5ab3
handshake=Noise_IN_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466e081945b5d5301fe42dabcc010cb04cf66f06d25106d39cc52c8
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=942a03a9fbd149d80f827d68acb020b98a2988435155931aa6e87780e1ae0e
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=6c22a69895e4c940bed283b9a10ce57d83f09683827a283fda77d75d086c6e
handshake=NoisePSK_IN_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ade0efee8781b33c3c2d068ef17e9356f3ccd1f38290e0c7f5ecd4aa2ea9b4e0e731f3b859a9e9605e8e0253922d7d6bab30cc74b9f793cca9fed521ee4418c7
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846696ea677f405802f6c11f2fd969487d67
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=bb62ae75645474b4b5490d0f916d7b37d91663723f188c3f21849db9e65e57
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=b1abf14cd6629553f259f2d2b63445606f7e0ccf1793af3ef62e437ccc9082
handshake=Noise_XK_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254adeaa7a4d551515273fda940aa4a5c8a
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ef86a45510611db0c587343c9bc1598a
msg_2_payload=
msg_2_ciphertext=065a23c2f62fb1bed15cb6ecbd9267c0dc7524d31ee9367258f443517df4b467af8e83092060a7ae3419acc16ff01de79bd94e38a1517cc2bec944e49148c8fb
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=7043c98fbdd02d209268778851ae3117aa9cb3b29737867eb75e0718e8acfa
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=21069488a4bddda5c5211d9c5b80c1c5e42c4e65e5cd3040c613272ac05c07
handshake=NoisePSK_XK_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662546c9ee4e91537297e71cdf3a76f51d9b3eadf62ea9156f36c7b37
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846687df7ce9c09379bcdf9421296c7c8cd98d088567a73fb79f1d80
msg_2_payload=746573745f6d73675f32
msg_2_ciphertext=dfa61affc5e437d14691be2fedb796bd0d831d20ad78437f61240b954744ece4eea51f001233f5cd788066fafa4c264c28fb33b3c1106718c9e8acb226d2d659b42c01989fa4d9afdb3f
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=df4516ab906d34a32b9af2b309696442265c15ffcd4a6712fa0af450b9b7b1
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=dd395d8c2cb9db452c85c175c51459857e10ccd9a712b29180befb15be0f1f
handshake=Noise_IK_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625419d6fab175300a577115c701c41ed681373f0432f81d3bf8676bd05216cd1919e61b75ccef0c0cf0b216fcdf371d0859e6d8177aa9777fe9b8435bb6f8202c3acd9051a9aee0a63e76f6
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846658a7bb8caac5097833909e90778571d34ce0e5b6ea4c3a76f102
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=80a75e75c8e8d2e9c2a6c7bc6e550c4997d6d2b45429a530821c4aa5d36f27
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=b8475410da62a98493d33a1e669f8f56dd8f61d449b53bd375299c3435424a
handshake=NoisePSK_IK_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625400958e06b7765de364feb3e08caf87d71f4e7e251eebd44169b6a18645dbc87495927a2236736b23c4c5906b2a5d18f807bac796acab47a8f294c23a43caa2de
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846636529447095c9f3272b4b1d6724b5d9e
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=56b462cffbcc2a9c94873cb23f26575d36e290c0974deab40c17affb03288c
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=412cf22fa468629487f9203c1f1002648c2941f93597e55320d00d972e82e6
handshake=Noise_XE_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548ca1ebdab957c7ab0f142bf062f321d8
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484666cd2aa25df8aa18fe432ff9c7d185216
msg_2_payload=
msg_2_ciphertext=a41ddb55f08b67eaf91c9b02600e48ba1ba8fb81700a2e4fab2e731c746fe94d453620abcd21cddccbd30745bd6d4c87a6ecb6b911cf54f2cea0bd81b3e1082e
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=1787acb746fac978c8ac404820aef049dd180f5fa2dbf3cbb45fc80bb03f86
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=7122b21a98080e152c5ada8540ef93fff012d1c8baec7c795160c4014682a7
handshake=NoisePSK_XE_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254d09c77e312b1238f6eeec4ddb37a2172480781cc5122801f3f69
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dc8028fab7a0bb51771be464ba80c1f17fef458f3d2612e7dd7f
msg_2_payload=746573745f6d73675f32
msg_2_ciphertext=7eec0b44d5b8820d0936159215ebb42c6533a4714a068dcadd19e9c9b51c74a026c0818c94826c4cbeb75a56ba08b2996bd36778de1407601d4fa9d16820538c70d67b08fd4107a5f00a
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=2fb494236042590a39c13d7ffc2f10ac63cc3863f818f357bd453d5e80988a
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=4980b643c2bc704d9df2f402f6f49b47ecd383d93de264f62857a9e56fb99f
handshake=Noise_IE_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625417b6d662705e84cb15585b2f26dba6beb96076913887b03f78aa918785920b844c2c8d6088ee00b9b368cffa2ac74a42455540abd448e64f0db30de73879ede7e3df5d7368662932b980
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484664756e3178a95f0f801a36cd0e6d7855ee6d2e4c77efff262a7e4
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=9e544305306a3682addffb612d918023906e53aaa765068d4250088dd2a22a
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=66b7536bb0089797b3ff9dd1dae57e01e63f80c5a311d92a9fecf503962da7
handshake=NoisePSK_IE_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549f66f67af0143f08632daa733a8f8ba3df7746f5ec0c9f55f6b2484fb8872c01c4612a7f84e2a82f8b38cba94b71760025fdab0c0916e6b91e220d2e800375f2
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d532be6d1fc7faf0d1055f4bc24d9ce0
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=df52548e08765b4ea8199e9c51e14ff7190067345e9f7dbd95b0ba979ac32e
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=a0176d0a67693eb44575761516c78b8952a839b1598a45f9f992aecce2dec6
handshake=Noise_XX_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484665393019dbd6f438795da206db0886610b26108e424142c2e9b5fd1f7ea70cde8545f22cc3b52e6cf83a9266ed4850a7a3460f29794110cc1e4c4b5241c939f90
msg_2_payload=
msg_2_ciphertext=e610eadc4b00c17708bf223f29a66f02342fbedf6c0044736544b9271821ae406561124920ea641646ea97786397ad23ab2f0dbf49fc3e46328b481b0924438c
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=9ea1da1ec3bfecfffab213e537ed1791bfa887dd9c631351b3f63d6315ab9a
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=217c5111fad7afde33bd28abaff3def88a57ab50515115d23a10f28621f842
handshake=NoisePSK_XX_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543345f8d8f06f0c733a45fd972f82e1f6d5bbd8c383a4a323d2a6
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466494eac313d03de0b7241bf895a5cfb4a5e675c777cd78aaf0e90db0de238db09dc0a8f5c7a92c72fa7ef79d5ec81cd5617b83300ba44b4603867649cebdce4b722ac2a243fa856ee321d
msg_2_payload=746573745f6d73675f32
msg_2_ciphertext=d211523884c738c1fdf021b1bd92edb7092551aa53b7affa8a7de8329df849613940677fc58883b914a7c9fb4a8ddf1df9dbf64ea1bf0ce6d7c4f6cbf9b9b4f4603e4af4b3f26dc51a8f
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=3911dded66865cb0767c43d723b64bf15872e9171adb654d1887cfdd1c9317
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=42bb07c2d37d8d809a47b8823fae186b981070a2bbdac81a866b69d313e853
handshake=Noise_IX_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466dafa2f50bec421c6e061a97013b8d9d582911be531e7e463f108e9389c74d58943c11157db485d61bcaa6d51bcd3251fe8761a2ca307ad49797cecb71b657aee8eec2c351eb5368ef14f
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=40c12ccfdf59f44d7cfc8c7dfe8a1bf739107c31aebcfc9f4caee7dc9099c1
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=c3beff2f2144bb23f7fae6fd03578c40f1ef01140d1721a9e895958d52d749
handshake=NoisePSK_IX_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540740b4aa535d3086483c32be986da62b391b3d515aa338246ec7db12b44ad195278d052159f47765e8541ddbe49f42684eb70cddc149966c196ab0b92074f89b
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466935acd0a79d7e42eccb0cecadf38edd1d94ac3e85b8103263dc466e1bc3ffe6cd439279480d84f6801db519dad27fbb8ae34482365b80c000a8a5b643be4a58f
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=0a127058873c7b2a506c60512df82e99ae9acd8ffff269680ca99353f01096
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=de41b5bf378f314e6aa6321d0f8dc617705d3893fe093d8b3d424c5fed7231
handshake=Noise_N_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ceb26e62698f0a9d16577f5fcb929fb3
msg_1_payload=79656c6c6f777375626d6172696e65
msg_1_ciphertext=374a734846ea8b76251255d17bae5b5313087ff42afa23ed42a5b5bf325804
msg_2_payload=7375626d6172696e6579656c6c6f77
msg_2_ciphertext=922037b8012e37d18adb6827375085f06f034888ea3f625dfc91d424334290
handshake=NoisePSK_N_25519_AESGCM_SHA256
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254a76119060b81f112c5f887cc55db55936f74a6e9f98aa2c0d8ef
msg_1_payload=79656c6c6f777375626d6172696e65
msg_1_ciphertext=6d6f3ec5b84268faa7ddbb6a22e2126d218246abf0f07eba00044ec17cd3f3
msg_2_payload=7375626d6172696e6579656c6c6f77
msg_2_ciphertext=f6174a896a8a078d496c8dd08faf2532b9accc8aa35fcd82615bb3551f3c10
handshake=Noise_K_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625428f2b400a063dbdce02b5c28836b6e5fda2325068eb862efefce
msg_1_payload=79656c6c6f777375626d6172696e65
msg_1_ciphertext=aca1ae00ed718c11ae8f91c3c289db54dca4fba284098248984158f4afb15a
msg_2_payload=7375626d6172696e6579656c6c6f77
msg_2_ciphertext=334cde4d2b9e7189be333e05c4e8ca8cbe9a7e9e3170dc61abf51906f95f9b
handshake=NoisePSK_K_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254815ac6f117aaa5aca9ea0e7e5844a323
msg_1_payload=79656c6c6f777375626d6172696e65
msg_1_ciphertext=2bb736c753dd9bfff41f33d02c94bcef424d7e6739078142d95d9bb7350a07
msg_2_payload=7375626d6172696e6579656c6c6f77
msg_2_ciphertext=4a9504fb25a3ea87a33cfc10f0cd3be20db5ba71e1e9fddd2dcf8d83980214
handshake=Noise_X_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625427b9e233a46e236bc3b949c842a23bd75b3d6d717dbf3aa4a3cfaa59a42e6a50e9a53f4b77ba9c212a5ca41f911c099159e23701989c18e59ba9ffc746d06b61
msg_1_payload=79656c6c6f777375626d6172696e65
msg_1_ciphertext=601398a290497a3ecf22851d05f53b34fa1fc4a47a0371df1f5c540a1ecf61
msg_2_payload=7375626d6172696e6579656c6c6f77
msg_2_ciphertext=04edfc327b91e91bb67f5a069e5afbf154ebcf196baf843dce5d22f58f04e7
handshake=NoisePSK_X_25519_AESGCM_SHA256
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254de1a8721d67037c0279442ada3ccff3870f58c20c3ad1ad484d833091b847ef11c3073bc258cb38f5c62fe1bc0b9cff2ba53a6a6f45268e36c585ed47e0a41f4d79eec734e354f21395b
msg_1_payload=79656c6c6f777375626d6172696e65
msg_1_ciphertext=3bb85d5f8cb3d8411b3d4030c6aaff910be3429d83b11c78476e8483f1f4fe
msg_2_payload=7375626d6172696e6579656c6c6f77
msg_2_ciphertext=2b25cd52e80f4316f0bd93ca592385f53557fddb02a43fd7ad3d6f662fa2c5
handshake=Noise_NN_25519_AESGCM_SHA512
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466cf2b3d8441501153c7ad77fff102d4ad
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=9a465eef7a497d636aacec6f177a46820045154c6dc21cc887158ff7178f5f
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=a889eab9dcbdd768c92201eb7092fb3e9e2d1c87321fe70f6bd261b21a9aa1
handshake=NoisePSK_NN_25519_AESGCM_SHA512
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662549a2f5a708bba84e5f1773f2f746abb59f7d6e59e685374baf4f7
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c11c7527405615d34a80070abd92d02cc276b8b0038d40512c95
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=39b13d2cb0cf64b7cc4aa9e6ae4145f98a6ac3c2ff9463db3d5703cba9a668
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=54b70bd5cf5e836a96a8a5246f7bc1362a6ceda3a550b8702c4134c77922a3
handshake=Noise_KN_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d680843f299d5b0265815e4064f0df3ea5eeef9535edc1a29e1b
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=7f85b724b0d10b19b9f18ba74dc10bc28c187a1505e32a1b7ddb76fc381c60
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=7b27b15d8102e55eb6b5e7c02d5c1309289aa197b383424bb8d70268d1270f
handshake=NoisePSK_KN_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254413dcd6b45a3dca2d97f2abe14aef5b8
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466d24bbfe4c4214e0456b03b2bbe1b1397
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=194080332f202060f5d503f8b2c9e8516e23d5919eb3c9cc8640736183e74e
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=10483b9534df83878141eb377e917faf71340f4588249cdda85dca5cb98d3b
handshake=Noise_NK_25519_AESGCM_SHA512
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254bccd4635d2891ae46fa388fcb277b5bb
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484668479b6648e2a13c0900168a46748457f
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=3c3b3e1a1b22cdec195cb8c43f3d694269cd55421d0895cca7696e8c298c1c
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=13d838829d7fb57425535f1586944638fc6bbf339797c76dca3220ef1ac3c6
handshake=NoisePSK_NK_25519_AESGCM_SHA512
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662543e892f1dfda38e40829054e66915990192334e5e358c3150036e
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466241b1e60e9f5a7822cb6681675a2113ec31afc93c6a780f5a898
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=a5fd62848e9a32c05cdbb2f822895e2689a2f27dcf0dc166f4ac48eb2aa2be
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=887cf1633a5dd94470c5b4b7efdcf4e9b8fe5bc3623a22344532466d788ae5
handshake=Noise_KK_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254983397660911ddae03fe246b376afbd5d094b0fa701a84bdcd3e
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466beeba4b2e28bbb5d84ee8142c6b37c508edf518dbad16a09b062
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=6b689fca5f9af8029b40d692f66dab834d9b1ad71ef02e12f0ec068a93ba55
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=126650ec27e76d0de04fc556ef662a4a0cd619b62daacd5110dc43bfe1c1ba
handshake=NoisePSK_KK_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b09c00f86acddd92dff486ea3ca4f21e
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484660754dce9d7bada76df54d09b5d303c81
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=c3f34eb20d470bb57150773bab2e2d74accef983e609af674151553f5dce2f
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=b860fb7367feabffd694327fe1d2b7a5f9d415d2bc38f4f0a07bd748b17aca
handshake=Noise_NE_25519_AESGCM_SHA512
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254629e554be9145b64519bfcb098a81a51
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484667908ee2a45d9da39e03a99bd0b8c05df
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=f18a9a296c9a3751f171b253a58ff0b3f72b805355cd6a14ee5f2ee170f708
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=e3453ce8542e20d6f26423b25d50aa6698b141bbc1c4c8c172952f8a5d4894
handshake=NoisePSK_NE_25519_AESGCM_SHA512
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625411a35b2c32f6ec86ca3fb4a4fc9fa9e6e456333db200419144a4
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f77c4b64bc6a21597b223ab91d79854ec5d49e3123b4a77bbc94
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=30fa9d3f9c102b8d9e4b0bd1151bfd5779580b92342e5ed6649f010a09cc5b
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=54275530cd5c06c697704acf1b74c6dd00c761128d124c935912d6d55ab085
handshake=Noise_KE_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662547c83f235e477133dfedd4c51a32c8cccd56101f11184a31959ab
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a6780bf04ed528728512508412bc58ae299d8def52933bfaed99
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=6e5b9942d86575f30da74fd0791e2893060e13e50ab0f7e0cee72f6e03ca62
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=a2bd0061437387fc1dc1a59722629b965581c0a41a33da9eadd4e58aeac093
handshake=NoisePSK_KE_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625426e1f2477f38720158a682345c72b189
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466f6dfa5d4a0cbb48bdb1ffd616eeaf2ae
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=ea17291e08e93c8cc77524ee6550ed854cb11d7409ae20cb07a43b157169a1
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=48c5f9703760fcd335c24979b7fd5abeeb1e599358566ca775af00500a7ec9
handshake=Noise_NX_25519_AESGCM_SHA512
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466ac104e4413b3e6091ab98f8902f898f750341010fc28130905edcfa84df5b5fffd5c64064a663cc1f8f0e59775f3d93db4e7d95dd77b5928935227a3bbfef59a
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=50f23b250835f62aeee57429ea276cce9ce465b1fa5bd01cb8041bc9ae7722
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=681c16d92b2ed840ea2096ee1445c6d699f71659c0aa98c115fd2be24a4e6a
handshake=NoisePSK_NX_25519_AESGCM_SHA512
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ee0fb4a9c01ebaa8c036d42140239e4fc0b437a5f6537e77dc89
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a1d9031c5fcff0074244eea79a35103495d407104bcfc77701c4858d1e63ec464784b156184011f7e183f7389b67cf58829c13cd085e8425b20d707410e00e3242f490733b8e26015407
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=0d59141b3a66db228add3bf5eca421332ac47ba45a822e4c8904d9409bed59
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=2340208d070821bffcaca385166c1193f099ef02294360d9f42c85d0c7d53f
handshake=Noise_KX_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254746573745f6d73675f30
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672f4561972c0066d2edb9ec3f6e06061d9efd85e8e09eea4f7b55e051881ed2dc41c3031529d4ad19d8b7d219ee949ba8539d798b2be574927e893bc2be2e90d5f23a332ce63e9b6af53
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=b455e7160f810c5bc83b94c63932a10a218f6558daa7c9408d619d960d2796
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=f2afc54621ee01e366836724674abfef6e64777e77ec15067c04d59d9209a4
handshake=NoisePSK_KX_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254749605bff536b153aa14e088d74f87e9
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466a00107cc3170d3b32d790b9d81f635ca06912b5a3b1bdc1a449f1057c0f57d3cb06866d23e946fdd10a59a3bb032f861ca4be4b2f839721b1c5ef0164c6ffc6d
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=5160e1632f6538cad16b6601844832a95a6fd94378cf200caad5e1e57b8f81
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=3f697754093c660bc6895a107bb03fc0cfe068bb28f343ce39411e3b506654
handshake=Noise_XN_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466c9e8710f7b46475111899a331cb6d0a7
msg_2_payload=
msg_2_ciphertext=1ab983aef2af5558802d787fec340c612a9332b5ad54d9d76bea87516becc239067cd1d54113d19c1f71c83a1edf288d743f8a931b93cb162a125f6042ef548f
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=d195f8befc66baa201a18c4064909ebe8502e0f9b5e961314b61fd125d247d
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=86591937ccc7873fb61286c7d019e73daf8b40ec33dcc9d1fffe1c9a16dd4c
handshake=NoisePSK_XN_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662540de47462eeae93eaef36c1f3daf44daeaa9818c5cc5c79ff6948
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466784bbb770c160b0cc5365bb3f40b754ef704d00c72bd6f8b5fec
msg_2_payload=746573745f6d73675f32
msg_2_ciphertext=375bfbe52c6ce0211f0bca9a758df9e328e7baa6db082e5e9b11a321091aa8d485c95fd389b37f00e254d00655c9cece09fc1e28f5e0a28c2be87822f2d2080cc4c2ea9a6b09baee7e05
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=6836d63827285cd0da02e8944a24a9c339c8550646001516e97f2e28485f4d
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=194ef334d4e66210c86eaaac659df30fb02f232008baf09826f53039a15d9c
handshake=Noise_IN_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd1662548f40c5adb68f25624ae5b214ea767a6ec94d829d3d7b5e1ad1ba6f3e2138285f746573745f6d73675f30
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466578e11ef9be6d82063107b23e9a7cdafd87a02d15059693b866a
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=d4e08cc4a109b93413b9f2b93a90c3b52d328130346ae8a7a65693bbdfffb3
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=2bf0d845c35d0b63452e9477083d9c35feb7263cebf00828ce84fba88f94c0
handshake=NoisePSK_IN_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254499a127ed6ad5fcc073fc9e05ad58f1c1ec58b2b45f21268c684b8723fbb2319247e6a6cbb077340342134d3abd3e38385f553c3c70a88c35f6521fd867c6097
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846644905b28763fca8364ba926060edf69b
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=9407b17b6d1a8569280b18e32262410dc3c45af670397a0caf36d1702683d6
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=b9d459c569460b0d19a4913e2818588337080aa4f3f9f0f8f44bf58063ebd3
handshake=Noise_XK_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd16625494382079878f98f580c3b1cbb5aa1b3e
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484669d6a740fa022b801a82f6d8f736a9221
msg_2_payload=
msg_2_ciphertext=5e88a8a22bc7df4d8b6c85eaa581a819ec04c6588a193d2af0de37da0e24a50f3e9d35ee86621e9543a33614ab4c3cc9290c2266378883ed491d6b583fe98670
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=e1b55532068a924fa7cd262612a53c9eb0b4925df7819a9afe61509d63a879
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=94b7b8c259658fd03b54749fdd35464a286a6ba9cc9ff76833f20736f632db
handshake=NoisePSK_XK_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254439878b11f1253859e951305a0c3922b2eeb04543a65fd5611e5
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b3c98c0e6a902d2166de3927876e1cb7f79760fea34de6afcb17
msg_2_payload=746573745f6d73675f32
msg_2_ciphertext=42aa94134f4df412e22243ed27f1b2ffeb396589ca7ffe3a90512cb4e426e29d93f25b8d874639d86f0bef95c2cb223c8a7fae9623ac088a040e49d3a9548c6887f57b5fbe14eed4952a
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=8995249a400019b6540ac932769e27ab9238bf912a0c834c8c67c4c005aff7
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=57da4f7dfc9ad33494ef900bafe4c709a42ebc4bba57218fe8f0d38d1c31c9
handshake=Noise_IK_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254e4c987aee1def7f4451e94e52f2edcf3f88abd36f9a83613afec5cfba3d156ca23c0cff39fe89439ce3a8aa083ba16fb66154654a805c143d8a926195b37d8d08a4fcdefff201de9f069
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466b54fb4d11ab95fa50138358319a81593d62664ca0ad72f63c8d5
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=410d4ee9df61c268dddeee01e9035a81d099b7560f1d565624cddb19ccdea7
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=29c70c4ff6224a7472bb3ef9a786470ec1982e798ba7f5b5c201e705652893
handshake=NoisePSK_IK_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ffc012a1cda864a48d20eebc71c459b5d089cb7c6c662d65a640333ffe5207144a42e23eac7913303a12c34090e886590be24a9411be50235df254bcf215b9f6
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d484661323566bac46637e931843d916c4b728
msg_2_payload=79656c6c6f777375626d6172696e65
msg_2_ciphertext=480a23eae2a3113c514f1725827fd85289bcd273eeba8d168a5f663fbfbf61
msg_3_payload=7375626d6172696e6579656c6c6f77
msg_3_ciphertext=218c285fa4db6d490f01a57613718447747100cae521856b07ae6e02d03fef
handshake=Noise_XE_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ee09987339e045c00b5cea51bd41bb5c
msg_1_payload=
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d4846672b5f7bf29991e760db56356335e1294
msg_2_payload=
msg_2_ciphertext=a8b38cfc640620b20535b434801545369cbe90415f6695cc570eec03cf60c02edef77764883d5507df5208cf3877b712a184764459e3f48d946ffc614c9aa2fb
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=9e9b816538183e1884f5f63d710966a0d2a197aa3805eb5a7c9bde3e3cbb65
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=a4a0e0d3cbe0053213721f1f0d5ff57583e82d830bb38b8a687c04a154ec65
handshake=NoisePSK_XE_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
preshared_key=76657279736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254b1e1e73c1ce22c86487347770168a44ae3a5ea71433779c617a9
msg_1_payload=746573745f6d73675f31
msg_1_ciphertext=64b101b1d0be5a8704bd078f9895001fc03e8e9f9522f188dd128d9846d48466015884a11445e47d3fa0b8f98629d9388e34e8e3adf1e8d97cde
msg_2_payload=746573745f6d73675f32
msg_2_ciphertext=a1ccc357912c7ae5ee9321745bd1b3cba8a72d6ea0e5ce030374eeed28177e2cb0d08a9e99c645eee30aab89c6c66d7bbaff2e184395a18011d5020a542a848cc27085ed6d2323266a3e
msg_3_payload=79656c6c6f777375626d6172696e65
msg_3_ciphertext=2ee945e9e287df6118f5915f2fba178402a002be744ab546ef65e5a952d30f
msg_4_payload=7375626d6172696e6579656c6c6f77
msg_4_ciphertext=762459857b2f642c27a49ba78fd11f4daf70acd6065e6fc0a238e2e60ed3f8
handshake=Noise_IE_25519_AESGCM_SHA512
init_static=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f
resp_static=0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20
resp_ephemeral=2122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f40
gen_init_ephemeral=202122232425262728292a2b2c2d2e2f303132333435363738393a3b3c3d3e3f
gen_resp_ephemeral=4142434445464748494a4b4c4d4e4f505152535455565758595a5b5c5d5e5f60
prologue=6e6f74736563726574
msg_0_payload=746573745f6d73675f30
msg_0_ciphertext=358072d6365880d1aeea329adf9121383851ed21a28e3b75e965d0d2cd166254ca6389008c533527763dbed68c6fcff4f1a2e41ee78e8f0d8ab36fec875b8b9908d59f7a6edcc859787c4aca5de4e6df16e600cd0246027ff572695201d622b7062bbd471693cf076087
msg_1_payload=746573745f6d73675f31