forked from rust-bitcoin/rust-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall-features.txt
1068 lines (1068 loc) · 83.8 KB
/
all-features.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
impl<'a> core::convert::From<&'a secp256k1::ecdsa::Signature> for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl<'a> core::convert::From<&'a secp256k1::Keypair> for secp256k1::PublicKey
impl<'a> core::convert::From<&'a secp256k1::Keypair> for secp256k1::SecretKey
impl<'a> core::convert::TryFrom<&'a secp256k1::ecdsa::serialized_signature::SerializedSignature> for secp256k1::ecdsa::Signature
impl<'a> core::iter::traits::collect::IntoIterator for &'a secp256k1::ecdsa::serialized_signature::SerializedSignature
impl<'buf> core::clone::Clone for secp256k1::AllPreallocated<'buf>
impl<'buf> core::clone::Clone for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::clone::Clone for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::cmp::Eq for secp256k1::AllPreallocated<'buf>
impl<'buf> core::cmp::Eq for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::cmp::Eq for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::cmp::Ord for secp256k1::AllPreallocated<'buf>
impl<'buf> core::cmp::Ord for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::cmp::Ord for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::cmp::PartialEq for secp256k1::AllPreallocated<'buf>
impl<'buf> core::cmp::PartialEq for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::cmp::PartialEq for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::cmp::PartialOrd for secp256k1::AllPreallocated<'buf>
impl<'buf> core::cmp::PartialOrd for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::cmp::PartialOrd for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::fmt::Debug for secp256k1::AllPreallocated<'buf>
impl<'buf> core::fmt::Debug for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::fmt::Debug for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::hash::Hash for secp256k1::AllPreallocated<'buf>
impl<'buf> core::hash::Hash for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::hash::Hash for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::marker::Copy for secp256k1::AllPreallocated<'buf>
impl<'buf> core::marker::Copy for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::marker::Copy for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::marker::Freeze for secp256k1::AllPreallocated<'buf>
impl<'buf> core::marker::Freeze for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::marker::Freeze for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::marker::Send for secp256k1::AllPreallocated<'buf>
impl<'buf> core::marker::Send for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::marker::Send for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::marker::StructuralPartialEq for secp256k1::AllPreallocated<'buf>
impl<'buf> core::marker::StructuralPartialEq for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::marker::StructuralPartialEq for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::marker::Sync for secp256k1::AllPreallocated<'buf>
impl<'buf> core::marker::Sync for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::marker::Sync for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::marker::Unpin for secp256k1::AllPreallocated<'buf>
impl<'buf> core::marker::Unpin for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::marker::Unpin for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::panic::unwind_safe::RefUnwindSafe for secp256k1::AllPreallocated<'buf>
impl<'buf> core::panic::unwind_safe::RefUnwindSafe for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::panic::unwind_safe::RefUnwindSafe for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> core::panic::unwind_safe::UnwindSafe for secp256k1::AllPreallocated<'buf>
impl<'buf> core::panic::unwind_safe::UnwindSafe for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> core::panic::unwind_safe::UnwindSafe for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf, C: secp256k1::Context + secp256k1::PreallocatedContext<'buf>> secp256k1::Secp256k1<C>
impl<'buf> secp256k1::Context for secp256k1::AllPreallocated<'buf>
impl<'buf> secp256k1::Context for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> secp256k1::Context for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> secp256k1::PreallocatedContext<'buf> for secp256k1::AllPreallocated<'buf>
impl<'buf> secp256k1::PreallocatedContext<'buf> for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> secp256k1::PreallocatedContext<'buf> for secp256k1::VerifyOnlyPreallocated<'buf>
impl<'buf> secp256k1::Secp256k1<secp256k1::AllPreallocated<'buf>>
impl<'buf> secp256k1::Secp256k1<secp256k1::SignOnlyPreallocated<'buf>>
impl<'buf> secp256k1::Secp256k1<secp256k1::VerifyOnlyPreallocated<'buf>>
impl<'buf> secp256k1::Signing for secp256k1::AllPreallocated<'buf>
impl<'buf> secp256k1::Signing for secp256k1::SignOnlyPreallocated<'buf>
impl<'buf> secp256k1::Verification for secp256k1::AllPreallocated<'buf>
impl<'buf> secp256k1::Verification for secp256k1::VerifyOnlyPreallocated<'buf>
impl<C> core::marker::Freeze for secp256k1::Secp256k1<C>
impl<C> core::marker::Unpin for secp256k1::Secp256k1<C> where C: core::marker::Unpin
impl<C> core::panic::unwind_safe::RefUnwindSafe for secp256k1::Secp256k1<C> where C: core::panic::unwind_safe::RefUnwindSafe
impl<C> core::panic::unwind_safe::UnwindSafe for secp256k1::Secp256k1<C> where C: core::panic::unwind_safe::UnwindSafe
impl core::borrow::Borrow<[u8]> for secp256k1::ecdh::SharedSecret
impl core::borrow::Borrow<[u8]> for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::clone::Clone for secp256k1::All
impl core::clone::Clone for secp256k1::ecdh::SharedSecret
impl core::clone::Clone for secp256k1::ecdsa::RecoverableSignature
impl core::clone::Clone for secp256k1::ecdsa::RecoveryId
impl core::clone::Clone for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::clone::Clone for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::clone::Clone for secp256k1::ecdsa::Signature
impl core::clone::Clone for secp256k1::ellswift::ElligatorSwift
impl core::clone::Clone for secp256k1::ellswift::ElligatorSwiftParty
impl core::clone::Clone for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::clone::Clone for secp256k1::Error
impl core::clone::Clone for secp256k1::global::GlobalContext
impl core::clone::Clone for secp256k1::InvalidParityValue
impl core::clone::Clone for secp256k1::Keypair
impl core::clone::Clone for secp256k1::Message
impl core::clone::Clone for secp256k1::Parity
impl core::clone::Clone for secp256k1::PublicKey
impl core::clone::Clone for secp256k1::scalar::OutOfRangeError
impl core::clone::Clone for secp256k1::scalar::Scalar
impl core::clone::Clone for secp256k1::schnorr::Signature
impl core::clone::Clone for secp256k1::SecretKey
impl core::clone::Clone for secp256k1::SignOnly
impl core::clone::Clone for secp256k1::VerifyOnly
impl core::clone::Clone for secp256k1::XOnlyPublicKey
impl core::cmp::Eq for secp256k1::All
impl core::cmp::Eq for secp256k1::ecdh::SharedSecret
impl core::cmp::Eq for secp256k1::ecdsa::RecoverableSignature
impl core::cmp::Eq for secp256k1::ecdsa::RecoveryId
impl core::cmp::Eq for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::cmp::Eq for secp256k1::ecdsa::Signature
impl core::cmp::Eq for secp256k1::ellswift::ElligatorSwift
impl core::cmp::Eq for secp256k1::ellswift::ElligatorSwiftParty
impl core::cmp::Eq for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::cmp::Eq for secp256k1::Error
impl core::cmp::Eq for secp256k1::InvalidParityValue
impl core::cmp::Eq for secp256k1::Keypair
impl core::cmp::Eq for secp256k1::Message
impl core::cmp::Eq for secp256k1::Parity
impl core::cmp::Eq for secp256k1::PublicKey
impl core::cmp::Eq for secp256k1::scalar::OutOfRangeError
impl core::cmp::Eq for secp256k1::scalar::Scalar
impl core::cmp::Eq for secp256k1::schnorr::Signature
impl core::cmp::Eq for secp256k1::SecretKey
impl core::cmp::Eq for secp256k1::SignOnly
impl core::cmp::Eq for secp256k1::VerifyOnly
impl core::cmp::Eq for secp256k1::XOnlyPublicKey
impl core::cmp::Ord for secp256k1::All
impl core::cmp::Ord for secp256k1::ecdh::SharedSecret
impl core::cmp::Ord for secp256k1::ecdsa::RecoverableSignature
impl core::cmp::Ord for secp256k1::ecdsa::RecoveryId
impl core::cmp::Ord for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::cmp::Ord for secp256k1::ecdsa::Signature
impl core::cmp::Ord for secp256k1::ellswift::ElligatorSwift
impl core::cmp::Ord for secp256k1::ellswift::ElligatorSwiftParty
impl core::cmp::Ord for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::cmp::Ord for secp256k1::Error
impl core::cmp::Ord for secp256k1::InvalidParityValue
impl core::cmp::Ord for secp256k1::Keypair
impl core::cmp::Ord for secp256k1::Message
impl core::cmp::Ord for secp256k1::Parity
impl core::cmp::Ord for secp256k1::PublicKey
impl core::cmp::Ord for secp256k1::scalar::Scalar
impl core::cmp::Ord for secp256k1::schnorr::Signature
impl core::cmp::Ord for secp256k1::SignOnly
impl core::cmp::Ord for secp256k1::VerifyOnly
impl core::cmp::Ord for secp256k1::XOnlyPublicKey
impl core::cmp::PartialEq for secp256k1::All
impl core::cmp::PartialEq for secp256k1::ecdh::SharedSecret
impl core::cmp::PartialEq for secp256k1::ecdsa::RecoverableSignature
impl core::cmp::PartialEq for secp256k1::ecdsa::RecoveryId
impl core::cmp::PartialEq for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::cmp::PartialEq for secp256k1::ecdsa::Signature
impl core::cmp::PartialEq for secp256k1::ellswift::ElligatorSwift
impl core::cmp::PartialEq for secp256k1::ellswift::ElligatorSwiftParty
impl core::cmp::PartialEq for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::cmp::PartialEq for secp256k1::Error
impl core::cmp::PartialEq for secp256k1::InvalidParityValue
impl core::cmp::PartialEq for secp256k1::Keypair
impl core::cmp::PartialEq for secp256k1::Message
impl core::cmp::PartialEq for secp256k1::Parity
impl core::cmp::PartialEq for secp256k1::PublicKey
impl core::cmp::PartialEq for secp256k1::scalar::OutOfRangeError
impl core::cmp::PartialEq for secp256k1::scalar::Scalar
impl core::cmp::PartialEq for secp256k1::schnorr::Signature
impl core::cmp::PartialEq for secp256k1::SecretKey
impl core::cmp::PartialEq for secp256k1::SignOnly
impl core::cmp::PartialEq for secp256k1::VerifyOnly
impl core::cmp::PartialEq for secp256k1::XOnlyPublicKey
impl core::cmp::PartialEq<secp256k1::ecdsa::serialized_signature::SerializedSignature> for [u8]
impl core::cmp::PartialEq<[u8]> for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::cmp::PartialOrd for secp256k1::All
impl core::cmp::PartialOrd for secp256k1::ecdh::SharedSecret
impl core::cmp::PartialOrd for secp256k1::ecdsa::RecoverableSignature
impl core::cmp::PartialOrd for secp256k1::ecdsa::RecoveryId
impl core::cmp::PartialOrd for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::cmp::PartialOrd for secp256k1::ecdsa::Signature
impl core::cmp::PartialOrd for secp256k1::ellswift::ElligatorSwift
impl core::cmp::PartialOrd for secp256k1::ellswift::ElligatorSwiftParty
impl core::cmp::PartialOrd for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::cmp::PartialOrd for secp256k1::Error
impl core::cmp::PartialOrd for secp256k1::InvalidParityValue
impl core::cmp::PartialOrd for secp256k1::Keypair
impl core::cmp::PartialOrd for secp256k1::Message
impl core::cmp::PartialOrd for secp256k1::Parity
impl core::cmp::PartialOrd for secp256k1::PublicKey
impl core::cmp::PartialOrd for secp256k1::scalar::Scalar
impl core::cmp::PartialOrd for secp256k1::schnorr::Signature
impl core::cmp::PartialOrd for secp256k1::SignOnly
impl core::cmp::PartialOrd for secp256k1::VerifyOnly
impl core::cmp::PartialOrd for secp256k1::XOnlyPublicKey
impl core::cmp::PartialOrd<secp256k1::ecdsa::serialized_signature::SerializedSignature> for [u8]
impl core::cmp::PartialOrd<[u8]> for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::convert::AsRef<[u8; 32]> for secp256k1::Message
impl core::convert::AsRef<[u8; 32]> for secp256k1::SecretKey
impl core::convert::AsRef<[u8; 64]> for secp256k1::schnorr::Signature
impl core::convert::AsRef<[u8]> for secp256k1::ecdh::SharedSecret
impl core::convert::AsRef<[u8]> for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::convert::From<secp256k1::ecdsa::Signature> for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::convert::From<secp256k1::InvalidParityValue> for secp256k1::Error
impl core::convert::From<secp256k1::Keypair> for secp256k1::PublicKey
impl core::convert::From<secp256k1::Keypair> for secp256k1::SecretKey
impl core::convert::From<secp256k1::Parity> for i32
impl core::convert::From<secp256k1::Parity> for u8
impl core::convert::From<secp256k1::PublicKey> for secp256k1::XOnlyPublicKey
impl core::convert::From<secp256k1::SecretKey> for secp256k1::scalar::Scalar
impl core::convert::From<secp256k1_sys::PublicKey> for secp256k1::PublicKey
impl core::convert::From<secp256k1_sys::recovery::RecoverableSignature> for secp256k1::ecdsa::RecoverableSignature
impl core::convert::From<secp256k1_sys::Signature> for secp256k1::ecdsa::Signature
impl core::convert::From<secp256k1_sys::XOnlyPublicKey> for secp256k1::XOnlyPublicKey
impl core::convert::TryFrom<i32> for secp256k1::Parity
impl core::convert::TryFrom<secp256k1::ecdsa::serialized_signature::SerializedSignature> for secp256k1::ecdsa::Signature
impl core::convert::TryFrom<u8> for secp256k1::Parity
impl core::default::Default for secp256k1::Secp256k1<secp256k1::All>
impl core::error::Error for secp256k1::Error
impl core::error::Error for secp256k1::InvalidParityValue
impl core::error::Error for secp256k1::scalar::OutOfRangeError
impl core::fmt::Debug for secp256k1::All
impl core::fmt::Debug for secp256k1::ecdh::SharedSecret
impl core::fmt::Debug for secp256k1::ecdsa::RecoverableSignature
impl core::fmt::Debug for secp256k1::ecdsa::RecoveryId
impl core::fmt::Debug for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::fmt::Debug for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::fmt::Debug for secp256k1::ecdsa::Signature
impl core::fmt::Debug for secp256k1::ellswift::ElligatorSwift
impl core::fmt::Debug for secp256k1::ellswift::ElligatorSwiftParty
impl core::fmt::Debug for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::fmt::Debug for secp256k1::Error
impl core::fmt::Debug for secp256k1::global::GlobalContext
impl core::fmt::Debug for secp256k1::InvalidParityValue
impl core::fmt::Debug for secp256k1::Keypair
impl core::fmt::Debug for secp256k1::Message
impl core::fmt::Debug for secp256k1::Parity
impl core::fmt::Debug for secp256k1::PublicKey
impl core::fmt::Debug for secp256k1::scalar::OutOfRangeError
impl core::fmt::Debug for secp256k1::scalar::Scalar
impl core::fmt::Debug for secp256k1::schnorr::Signature
impl core::fmt::Debug for secp256k1::SecretKey
impl core::fmt::Debug for secp256k1::SignOnly
impl core::fmt::Debug for secp256k1::VerifyOnly
impl core::fmt::Debug for secp256k1::XOnlyPublicKey
impl core::fmt::Display for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::fmt::Display for secp256k1::ecdsa::Signature
impl core::fmt::Display for secp256k1::ellswift::ElligatorSwift
impl core::fmt::Display for secp256k1::Error
impl core::fmt::Display for secp256k1::InvalidParityValue
impl core::fmt::Display for secp256k1::Message
impl core::fmt::Display for secp256k1::PublicKey
impl core::fmt::Display for secp256k1::scalar::OutOfRangeError
impl core::fmt::Display for secp256k1::schnorr::Signature
impl core::fmt::Display for secp256k1::XOnlyPublicKey
impl core::fmt::LowerHex for secp256k1::ellswift::ElligatorSwift
impl core::fmt::LowerHex for secp256k1::Message
impl core::fmt::LowerHex for secp256k1::PublicKey
impl core::fmt::LowerHex for secp256k1::schnorr::Signature
impl core::fmt::LowerHex for secp256k1::XOnlyPublicKey
impl core::hash::Hash for secp256k1::All
impl core::hash::Hash for secp256k1::ecdh::SharedSecret
impl core::hash::Hash for secp256k1::ecdsa::RecoverableSignature
impl core::hash::Hash for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::hash::Hash for secp256k1::ecdsa::Signature
impl core::hash::Hash for secp256k1::ellswift::ElligatorSwift
impl core::hash::Hash for secp256k1::ellswift::ElligatorSwiftParty
impl core::hash::Hash for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::hash::Hash for secp256k1::Error
impl core::hash::Hash for secp256k1::InvalidParityValue
impl core::hash::Hash for secp256k1::Keypair
impl core::hash::Hash for secp256k1::Message
impl core::hash::Hash for secp256k1::Parity
impl core::hash::Hash for secp256k1::PublicKey
impl core::hash::Hash for secp256k1::scalar::OutOfRangeError
impl core::hash::Hash for secp256k1::scalar::Scalar
impl core::hash::Hash for secp256k1::schnorr::Signature
impl core::hash::Hash for secp256k1::SignOnly
impl core::hash::Hash for secp256k1::VerifyOnly
impl core::hash::Hash for secp256k1::XOnlyPublicKey
impl core::iter::traits::collect::IntoIterator for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::iter::traits::double_ended::DoubleEndedIterator for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::iter::traits::exact_size::ExactSizeIterator for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::iter::traits::iterator::Iterator for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::iter::traits::marker::FusedIterator for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::marker::Copy for secp256k1::All
impl core::marker::Copy for secp256k1::ecdh::SharedSecret
impl core::marker::Copy for secp256k1::ecdsa::RecoverableSignature
impl core::marker::Copy for secp256k1::ecdsa::RecoveryId
impl core::marker::Copy for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::marker::Copy for secp256k1::ecdsa::Signature
impl core::marker::Copy for secp256k1::ellswift::ElligatorSwift
impl core::marker::Copy for secp256k1::ellswift::ElligatorSwiftParty
impl core::marker::Copy for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::marker::Copy for secp256k1::Error
impl core::marker::Copy for secp256k1::global::GlobalContext
impl core::marker::Copy for secp256k1::InvalidParityValue
impl core::marker::Copy for secp256k1::Keypair
impl core::marker::Copy for secp256k1::Message
impl core::marker::Copy for secp256k1::Parity
impl core::marker::Copy for secp256k1::PublicKey
impl core::marker::Copy for secp256k1::scalar::Scalar
impl core::marker::Copy for secp256k1::schnorr::Signature
impl core::marker::Copy for secp256k1::SecretKey
impl core::marker::Copy for secp256k1::SignOnly
impl core::marker::Copy for secp256k1::VerifyOnly
impl core::marker::Copy for secp256k1::XOnlyPublicKey
impl core::marker::Freeze for secp256k1::All
impl core::marker::Freeze for secp256k1::ecdh::SharedSecret
impl core::marker::Freeze for secp256k1::ecdsa::RecoverableSignature
impl core::marker::Freeze for secp256k1::ecdsa::RecoveryId
impl core::marker::Freeze for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::marker::Freeze for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::marker::Freeze for secp256k1::ecdsa::Signature
impl core::marker::Freeze for secp256k1::ellswift::ElligatorSwift
impl core::marker::Freeze for secp256k1::ellswift::ElligatorSwiftParty
impl core::marker::Freeze for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::marker::Freeze for secp256k1::Error
impl core::marker::Freeze for secp256k1::global::GlobalContext
impl core::marker::Freeze for secp256k1::InvalidParityValue
impl core::marker::Freeze for secp256k1::Keypair
impl core::marker::Freeze for secp256k1::Message
impl core::marker::Freeze for secp256k1::Parity
impl core::marker::Freeze for secp256k1::PublicKey
impl core::marker::Freeze for secp256k1::scalar::OutOfRangeError
impl core::marker::Freeze for secp256k1::scalar::Scalar
impl core::marker::Freeze for secp256k1::schnorr::Signature
impl core::marker::Freeze for secp256k1::SecretKey
impl core::marker::Freeze for secp256k1::SignOnly
impl core::marker::Freeze for secp256k1::VerifyOnly
impl core::marker::Freeze for secp256k1::XOnlyPublicKey
impl core::marker::Send for secp256k1::All
impl core::marker::Send for secp256k1::ecdh::SharedSecret
impl core::marker::Send for secp256k1::ecdsa::RecoverableSignature
impl core::marker::Send for secp256k1::ecdsa::RecoveryId
impl core::marker::Send for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::marker::Send for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::marker::Send for secp256k1::ecdsa::Signature
impl core::marker::Send for secp256k1::ellswift::ElligatorSwift
impl core::marker::Send for secp256k1::ellswift::ElligatorSwiftParty
impl core::marker::Send for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::marker::Send for secp256k1::Error
impl core::marker::Send for secp256k1::global::GlobalContext
impl core::marker::Send for secp256k1::InvalidParityValue
impl core::marker::Send for secp256k1::Keypair
impl core::marker::Send for secp256k1::Message
impl core::marker::Send for secp256k1::Parity
impl core::marker::Send for secp256k1::PublicKey
impl core::marker::Send for secp256k1::scalar::OutOfRangeError
impl core::marker::Send for secp256k1::scalar::Scalar
impl core::marker::Send for secp256k1::schnorr::Signature
impl core::marker::Send for secp256k1::SecretKey
impl core::marker::Send for secp256k1::SignOnly
impl core::marker::Send for secp256k1::VerifyOnly
impl core::marker::Send for secp256k1::XOnlyPublicKey
impl core::marker::StructuralPartialEq for secp256k1::All
impl core::marker::StructuralPartialEq for secp256k1::ecdh::SharedSecret
impl core::marker::StructuralPartialEq for secp256k1::ecdsa::RecoverableSignature
impl core::marker::StructuralPartialEq for secp256k1::ecdsa::RecoveryId
impl core::marker::StructuralPartialEq for secp256k1::ecdsa::Signature
impl core::marker::StructuralPartialEq for secp256k1::ellswift::ElligatorSwift
impl core::marker::StructuralPartialEq for secp256k1::ellswift::ElligatorSwiftParty
impl core::marker::StructuralPartialEq for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::marker::StructuralPartialEq for secp256k1::Error
impl core::marker::StructuralPartialEq for secp256k1::InvalidParityValue
impl core::marker::StructuralPartialEq for secp256k1::Keypair
impl core::marker::StructuralPartialEq for secp256k1::Message
impl core::marker::StructuralPartialEq for secp256k1::Parity
impl core::marker::StructuralPartialEq for secp256k1::PublicKey
impl core::marker::StructuralPartialEq for secp256k1::scalar::OutOfRangeError
impl core::marker::StructuralPartialEq for secp256k1::scalar::Scalar
impl core::marker::StructuralPartialEq for secp256k1::schnorr::Signature
impl core::marker::StructuralPartialEq for secp256k1::SignOnly
impl core::marker::StructuralPartialEq for secp256k1::VerifyOnly
impl core::marker::StructuralPartialEq for secp256k1::XOnlyPublicKey
impl core::marker::Sync for secp256k1::All
impl core::marker::Sync for secp256k1::ecdh::SharedSecret
impl core::marker::Sync for secp256k1::ecdsa::RecoverableSignature
impl core::marker::Sync for secp256k1::ecdsa::RecoveryId
impl core::marker::Sync for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::marker::Sync for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::marker::Sync for secp256k1::ecdsa::Signature
impl core::marker::Sync for secp256k1::ellswift::ElligatorSwift
impl core::marker::Sync for secp256k1::ellswift::ElligatorSwiftParty
impl core::marker::Sync for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::marker::Sync for secp256k1::Error
impl core::marker::Sync for secp256k1::global::GlobalContext
impl core::marker::Sync for secp256k1::InvalidParityValue
impl core::marker::Sync for secp256k1::Keypair
impl core::marker::Sync for secp256k1::Message
impl core::marker::Sync for secp256k1::Parity
impl core::marker::Sync for secp256k1::PublicKey
impl core::marker::Sync for secp256k1::scalar::OutOfRangeError
impl core::marker::Sync for secp256k1::scalar::Scalar
impl core::marker::Sync for secp256k1::schnorr::Signature
impl core::marker::Sync for secp256k1::SecretKey
impl core::marker::Sync for secp256k1::SignOnly
impl core::marker::Sync for secp256k1::VerifyOnly
impl core::marker::Sync for secp256k1::XOnlyPublicKey
impl core::marker::Unpin for secp256k1::All
impl core::marker::Unpin for secp256k1::ecdh::SharedSecret
impl core::marker::Unpin for secp256k1::ecdsa::RecoverableSignature
impl core::marker::Unpin for secp256k1::ecdsa::RecoveryId
impl core::marker::Unpin for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::marker::Unpin for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::marker::Unpin for secp256k1::ecdsa::Signature
impl core::marker::Unpin for secp256k1::ellswift::ElligatorSwift
impl core::marker::Unpin for secp256k1::ellswift::ElligatorSwiftParty
impl core::marker::Unpin for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::marker::Unpin for secp256k1::Error
impl core::marker::Unpin for secp256k1::global::GlobalContext
impl core::marker::Unpin for secp256k1::InvalidParityValue
impl core::marker::Unpin for secp256k1::Keypair
impl core::marker::Unpin for secp256k1::Message
impl core::marker::Unpin for secp256k1::Parity
impl core::marker::Unpin for secp256k1::PublicKey
impl core::marker::Unpin for secp256k1::scalar::OutOfRangeError
impl core::marker::Unpin for secp256k1::scalar::Scalar
impl core::marker::Unpin for secp256k1::schnorr::Signature
impl core::marker::Unpin for secp256k1::SecretKey
impl core::marker::Unpin for secp256k1::SignOnly
impl core::marker::Unpin for secp256k1::VerifyOnly
impl core::marker::Unpin for secp256k1::XOnlyPublicKey
impl core::ops::bit::BitXor for secp256k1::Parity
impl core::ops::deref::Deref for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::ops::deref::Deref for secp256k1::global::GlobalContext
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::All
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ecdh::SharedSecret
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ecdsa::RecoverableSignature
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ecdsa::RecoveryId
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ecdsa::Signature
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ellswift::ElligatorSwift
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ellswift::ElligatorSwiftParty
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::Error
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::global::GlobalContext
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::InvalidParityValue
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::Keypair
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::Message
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::Parity
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::PublicKey
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::scalar::OutOfRangeError
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::scalar::Scalar
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::schnorr::Signature
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::SecretKey
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::SignOnly
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::VerifyOnly
impl core::panic::unwind_safe::RefUnwindSafe for secp256k1::XOnlyPublicKey
impl core::panic::unwind_safe::UnwindSafe for secp256k1::All
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ecdh::SharedSecret
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ecdsa::RecoverableSignature
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ecdsa::RecoveryId
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ecdsa::serialized_signature::IntoIter
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ecdsa::serialized_signature::SerializedSignature
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ecdsa::Signature
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ellswift::ElligatorSwift
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ellswift::ElligatorSwiftParty
impl core::panic::unwind_safe::UnwindSafe for secp256k1::ellswift::ElligatorSwiftSharedSecret
impl core::panic::unwind_safe::UnwindSafe for secp256k1::Error
impl core::panic::unwind_safe::UnwindSafe for secp256k1::global::GlobalContext
impl core::panic::unwind_safe::UnwindSafe for secp256k1::InvalidParityValue
impl core::panic::unwind_safe::UnwindSafe for secp256k1::Keypair
impl core::panic::unwind_safe::UnwindSafe for secp256k1::Message
impl core::panic::unwind_safe::UnwindSafe for secp256k1::Parity
impl core::panic::unwind_safe::UnwindSafe for secp256k1::PublicKey
impl core::panic::unwind_safe::UnwindSafe for secp256k1::scalar::OutOfRangeError
impl core::panic::unwind_safe::UnwindSafe for secp256k1::scalar::Scalar
impl core::panic::unwind_safe::UnwindSafe for secp256k1::schnorr::Signature
impl core::panic::unwind_safe::UnwindSafe for secp256k1::SecretKey
impl core::panic::unwind_safe::UnwindSafe for secp256k1::SignOnly
impl core::panic::unwind_safe::UnwindSafe for secp256k1::VerifyOnly
impl core::panic::unwind_safe::UnwindSafe for secp256k1::XOnlyPublicKey
impl core::str::traits::FromStr for secp256k1::ecdh::SharedSecret
impl core::str::traits::FromStr for secp256k1::ecdsa::Signature
impl core::str::traits::FromStr for secp256k1::ellswift::ElligatorSwift
impl core::str::traits::FromStr for secp256k1::Keypair
impl core::str::traits::FromStr for secp256k1::PublicKey
impl core::str::traits::FromStr for secp256k1::schnorr::Signature
impl core::str::traits::FromStr for secp256k1::SecretKey
impl core::str::traits::FromStr for secp256k1::XOnlyPublicKey
impl<C: secp256k1::Context> core::clone::Clone for secp256k1::Secp256k1<C>
impl<C: secp256k1::Context> core::cmp::Eq for secp256k1::Secp256k1<C>
impl<C: secp256k1::Context> core::cmp::PartialEq for secp256k1::Secp256k1<C>
impl<C: secp256k1::Context> core::fmt::Debug for secp256k1::Secp256k1<C>
impl<C: secp256k1::Context> core::marker::Send for secp256k1::Secp256k1<C>
impl<C: secp256k1::Context> core::marker::Sync for secp256k1::Secp256k1<C>
impl<C: secp256k1::Context> core::ops::drop::Drop for secp256k1::Secp256k1<C>
impl<C: secp256k1::Context> secp256k1::Secp256k1<C>
impl<C: secp256k1::Signing> secp256k1::Secp256k1<C>
impl<C: secp256k1::Verification> secp256k1::Secp256k1<C>
impl<'de> serde::de::Deserialize<'de> for secp256k1::ecdh::SharedSecret
impl<'de> serde::de::Deserialize<'de> for secp256k1::ecdsa::Signature
impl<'de> serde::de::Deserialize<'de> for secp256k1::Keypair
impl<'de> serde::de::Deserialize<'de> for secp256k1::Parity
impl<'de> serde::de::Deserialize<'de> for secp256k1::PublicKey
impl<'de> serde::de::Deserialize<'de> for secp256k1::schnorr::Signature
impl<'de> serde::de::Deserialize<'de> for secp256k1::SecretKey
impl<'de> serde::de::Deserialize<'de> for secp256k1::XOnlyPublicKey
impl<I> core::ops::index::Index<I> for secp256k1::Message where [u8]: core::ops::index::Index<I>
impl<I> core::ops::index::Index<I> for secp256k1::scalar::Scalar where [u8]: core::ops::index::Index<I>
impl<I> core::ops::index::Index<I> for secp256k1::schnorr::Signature where [u8]: core::ops::index::Index<I>
impl<I> core::ops::index::Index<I> for secp256k1::SecretKey where [u8]: core::ops::index::Index<I>
impl secp256k1::Context for secp256k1::All
impl secp256k1::Context for secp256k1::SignOnly
impl secp256k1::Context for secp256k1::VerifyOnly
impl secp256k1::ecdh::SharedSecret
impl secp256k1::ecdsa::RecoverableSignature
impl secp256k1::ecdsa::RecoveryId
impl secp256k1::ecdsa::serialized_signature::IntoIter
impl secp256k1::ecdsa::serialized_signature::SerializedSignature
impl secp256k1::ecdsa::Signature
impl secp256k1::ellswift::ElligatorSwift
impl secp256k1::ellswift::ElligatorSwiftSharedSecret
impl secp256k1::Keypair
impl secp256k1::Message
impl secp256k1::Parity
impl secp256k1::PublicKey
impl secp256k1::scalar::Scalar
impl secp256k1::schnorr::Signature
impl secp256k1::Secp256k1<secp256k1::All>
impl secp256k1::Secp256k1<secp256k1::SignOnly>
impl secp256k1::Secp256k1<secp256k1::VerifyOnly>
impl secp256k1::SecretKey
impl secp256k1::Signing for secp256k1::All
impl secp256k1::Signing for secp256k1::SignOnly
impl secp256k1_sys::CPtr for secp256k1::ecdsa::RecoverableSignature
impl secp256k1_sys::CPtr for secp256k1::ecdsa::Signature
impl secp256k1_sys::CPtr for secp256k1::ellswift::ElligatorSwift
impl secp256k1_sys::CPtr for secp256k1::Keypair
impl secp256k1_sys::CPtr for secp256k1::Message
impl secp256k1_sys::CPtr for secp256k1::PublicKey
impl secp256k1_sys::CPtr for secp256k1::schnorr::Signature
impl secp256k1_sys::CPtr for secp256k1::SecretKey
impl secp256k1_sys::CPtr for secp256k1::XOnlyPublicKey
impl secp256k1::Verification for secp256k1::All
impl secp256k1::Verification for secp256k1::VerifyOnly
impl secp256k1::XOnlyPublicKey
impl serde::ser::Serialize for secp256k1::ecdh::SharedSecret
impl serde::ser::Serialize for secp256k1::ecdsa::Signature
impl serde::ser::Serialize for secp256k1::Keypair
impl serde::ser::Serialize for secp256k1::Parity
impl serde::ser::Serialize for secp256k1::PublicKey
impl serde::ser::Serialize for secp256k1::schnorr::Signature
impl serde::ser::Serialize for secp256k1::SecretKey
impl serde::ser::Serialize for secp256k1::XOnlyPublicKey
impl<T: secp256k1::ThirtyTwoByteHash> core::convert::From<T> for secp256k1::Message
impl<T: secp256k1::ThirtyTwoByteHash> core::convert::From<T> for secp256k1::SecretKey
#[non_exhaustive] pub struct secp256k1::scalar::OutOfRangeError
pub const fn secp256k1::ellswift::ElligatorSwiftSharedSecret::as_secret_bytes(&self) -> &[u8; 32]
pub const fn secp256k1::ellswift::ElligatorSwiftSharedSecret::from_secret_bytes(bytes: [u8; 32]) -> Self
pub const fn secp256k1::ellswift::ElligatorSwiftSharedSecret::to_secret_bytes(self) -> [u8; 32]
pub const secp256k1::All::DESCRIPTION: &'static str
pub const secp256k1::All::FLAGS: secp256k1_sys::types::c_uint
pub const secp256k1::AllPreallocated<'buf>::DESCRIPTION: &'static str
pub const secp256k1::AllPreallocated<'buf>::FLAGS: secp256k1_sys::types::c_uint
pub const secp256k1::constants::COMPACT_SIGNATURE_SIZE: usize = 64usize
pub const secp256k1::constants::CURVE_ORDER: _
pub const secp256k1::constants::ELLSWIFT_ENCODING_SIZE: usize = 64usize
pub const secp256k1::constants::FIELD_SIZE: _
pub const secp256k1::constants::GENERATOR_X: _
pub const secp256k1::constants::GENERATOR_Y: _
pub const secp256k1::constants::KEY_PAIR_SIZE: usize = 96usize
pub const secp256k1::constants::MAX_SIGNATURE_SIZE: usize = 72usize
pub const secp256k1::constants::MESSAGE_SIZE: usize = 32usize
pub const secp256k1::constants::ONE: _
pub const secp256k1::constants::PUBLIC_KEY_SIZE: usize = 33usize
pub const secp256k1::constants::SCHNORR_PUBLIC_KEY_SIZE: usize = 32usize
pub const secp256k1::constants::SCHNORR_SIGNATURE_SIZE: usize = 64usize
pub const secp256k1::constants::SECRET_KEY_SIZE: usize = 32usize
pub const secp256k1::constants::UNCOMPRESSED_PUBLIC_KEY_SIZE: usize = 65usize
pub const secp256k1::constants::ZERO: _
pub const secp256k1::Context::DESCRIPTION: &'static str
pub const secp256k1::Context::FLAGS: secp256k1_sys::types::c_uint
pub const secp256k1::scalar::Scalar::MAX: secp256k1::scalar::Scalar
pub const secp256k1::scalar::Scalar::ONE: secp256k1::scalar::Scalar
pub const secp256k1::scalar::Scalar::ZERO: secp256k1::scalar::Scalar
pub const secp256k1::SignOnly::DESCRIPTION: &'static str
pub const secp256k1::SignOnly::FLAGS: secp256k1_sys::types::c_uint
pub const secp256k1::SignOnlyPreallocated<'buf>::DESCRIPTION: &'static str
pub const secp256k1::SignOnlyPreallocated<'buf>::FLAGS: secp256k1_sys::types::c_uint
pub const secp256k1::VerifyOnly::DESCRIPTION: &'static str
pub const secp256k1::VerifyOnly::FLAGS: secp256k1_sys::types::c_uint
pub const secp256k1::VerifyOnlyPreallocated<'buf>::DESCRIPTION: &'static str
pub const secp256k1::VerifyOnlyPreallocated<'buf>::FLAGS: secp256k1_sys::types::c_uint
pub enum secp256k1::All
pub enum secp256k1::ellswift::ElligatorSwiftParty
pub enum secp256k1::Error
pub enum secp256k1::Parity
pub enum secp256k1::SignOnly
pub enum secp256k1::VerifyOnly
pub extern crate secp256k1::hashes
pub fn &'a secp256k1::ecdsa::serialized_signature::SerializedSignature::into_iter(self) -> Self::IntoIter
pub fn i32::from(parity: secp256k1::Parity) -> i32
pub fn secp256k1::All::clone(&self) -> secp256k1::All
pub fn secp256k1::All::cmp(&self, other: &secp256k1::All) -> core::cmp::Ordering
pub fn secp256k1::All::eq(&self, other: &secp256k1::All) -> bool
pub fn secp256k1::All::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::All::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::All::partial_cmp(&self, other: &secp256k1::All) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::AllPreallocated<'buf>::clone(&self) -> secp256k1::AllPreallocated<'buf>
pub fn secp256k1::AllPreallocated<'buf>::cmp(&self, other: &secp256k1::AllPreallocated<'buf>) -> core::cmp::Ordering
pub fn secp256k1::AllPreallocated<'buf>::eq(&self, other: &secp256k1::AllPreallocated<'buf>) -> bool
pub fn secp256k1::AllPreallocated<'buf>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::AllPreallocated<'buf>::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::AllPreallocated<'buf>::partial_cmp(&self, other: &secp256k1::AllPreallocated<'buf>) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ecdh::SharedSecret::as_ref(&self) -> &[u8]
pub fn secp256k1::ecdh::SharedSecret::borrow(&self) -> &[u8]
pub fn secp256k1::ecdh::SharedSecret::clone(&self) -> secp256k1::ecdh::SharedSecret
pub fn secp256k1::ecdh::SharedSecret::cmp(&self, other: &secp256k1::ecdh::SharedSecret) -> core::cmp::Ordering
pub fn secp256k1::ecdh::SharedSecret::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<Self, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::ecdh::SharedSecret::display_secret(&self) -> DisplaySecret
pub fn secp256k1::ecdh::SharedSecret::eq(&self, other: &secp256k1::ecdh::SharedSecret) -> bool
pub fn secp256k1::ecdh::SharedSecret::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ecdh::SharedSecret::from_bytes(bytes: [u8; 32]) -> secp256k1::ecdh::SharedSecret
pub fn secp256k1::ecdh::SharedSecret::from_slice(bytes: &[u8]) -> core::result::Result<secp256k1::ecdh::SharedSecret, secp256k1::Error>
pub fn secp256k1::ecdh::SharedSecret::from_str(s: &str) -> core::result::Result<secp256k1::ecdh::SharedSecret, secp256k1::Error>
pub fn secp256k1::ecdh::SharedSecret::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::ecdh::SharedSecret::new(point: &secp256k1::PublicKey, scalar: &secp256k1::SecretKey) -> secp256k1::ecdh::SharedSecret
pub fn secp256k1::ecdh::SharedSecret::non_secure_erase(&mut self)
pub fn secp256k1::ecdh::SharedSecret::partial_cmp(&self, other: &secp256k1::ecdh::SharedSecret) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ecdh::shared_secret_point(point: &secp256k1::PublicKey, scalar: &secp256k1::SecretKey) -> [u8; 64]
pub fn secp256k1::ecdh::SharedSecret::secret_bytes(&self) -> [u8; 32]
pub fn secp256k1::ecdh::SharedSecret::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::ecdsa::RecoverableSignature::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::ecdsa::RecoverableSignature::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::ecdsa::RecoverableSignature::as_mut_ptr(&mut self) -> *mut secp256k1_sys::recovery::RecoverableSignature
pub fn secp256k1::ecdsa::RecoverableSignature::as_ptr(&self) -> *const secp256k1_sys::recovery::RecoverableSignature
pub fn secp256k1::ecdsa::RecoverableSignature::clone(&self) -> secp256k1::ecdsa::RecoverableSignature
pub fn secp256k1::ecdsa::RecoverableSignature::cmp(&self, other: &secp256k1::ecdsa::RecoverableSignature) -> core::cmp::Ordering
pub fn secp256k1::ecdsa::RecoverableSignature::eq(&self, other: &secp256k1::ecdsa::RecoverableSignature) -> bool
pub fn secp256k1::ecdsa::RecoverableSignature::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ecdsa::RecoverableSignature::from_compact(data: &[u8], recid: secp256k1::ecdsa::RecoveryId) -> core::result::Result<secp256k1::ecdsa::RecoverableSignature, secp256k1::Error>
pub fn secp256k1::ecdsa::RecoverableSignature::from(sig: secp256k1_sys::recovery::RecoverableSignature) -> secp256k1::ecdsa::RecoverableSignature
pub fn secp256k1::ecdsa::RecoverableSignature::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::ecdsa::RecoverableSignature::partial_cmp(&self, other: &secp256k1::ecdsa::RecoverableSignature) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ecdsa::RecoverableSignature::recover(&self, msg: &secp256k1::Message) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::ecdsa::RecoverableSignature::serialize_compact(&self) -> (secp256k1::ecdsa::RecoveryId, [u8; 64])
pub fn secp256k1::ecdsa::RecoverableSignature::to_standard(&self) -> secp256k1::ecdsa::Signature
pub fn secp256k1::ecdsa::RecoveryId::clone(&self) -> secp256k1::ecdsa::RecoveryId
pub fn secp256k1::ecdsa::RecoveryId::cmp(&self, other: &secp256k1::ecdsa::RecoveryId) -> core::cmp::Ordering
pub fn secp256k1::ecdsa::RecoveryId::eq(&self, other: &secp256k1::ecdsa::RecoveryId) -> bool
pub fn secp256k1::ecdsa::RecoveryId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ecdsa::RecoveryId::from_i32(id: i32) -> core::result::Result<secp256k1::ecdsa::RecoveryId, secp256k1::Error>
pub fn secp256k1::ecdsa::RecoveryId::partial_cmp(&self, other: &secp256k1::ecdsa::RecoveryId) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ecdsa::RecoveryId::to_i32(self) -> i32
pub fn secp256k1::ecdsa::serialized_signature::IntoIter::as_slice(&self) -> &[u8]
pub fn secp256k1::ecdsa::serialized_signature::IntoIter::clone(&self) -> secp256k1::ecdsa::serialized_signature::IntoIter
pub fn secp256k1::ecdsa::serialized_signature::IntoIter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ecdsa::serialized_signature::IntoIter::next_back(&mut self) -> core::option::Option<Self::Item>
pub fn secp256k1::ecdsa::serialized_signature::IntoIter::next(&mut self) -> core::option::Option<Self::Item>
pub fn secp256k1::ecdsa::serialized_signature::IntoIter::nth(&mut self, n: usize) -> core::option::Option<Self::Item>
pub fn secp256k1::ecdsa::serialized_signature::IntoIter::size_hint(&self) -> (usize, core::option::Option<usize>)
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::as_ref(&self) -> &[u8]
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::borrow(&self) -> &[u8]
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::capacity(&self) -> usize
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::clone(&self) -> secp256k1::ecdsa::serialized_signature::SerializedSignature
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::cmp(&self, other: &secp256k1::ecdsa::serialized_signature::SerializedSignature) -> core::cmp::Ordering
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::deref(&self) -> &[u8]
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::eq(&self, other: &secp256k1::ecdsa::serialized_signature::SerializedSignature) -> bool
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::eq(&self, other: &[u8]) -> bool
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::from_signature(sig: &secp256k1::ecdsa::Signature) -> secp256k1::ecdsa::serialized_signature::SerializedSignature
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::from(value: &'a secp256k1::ecdsa::Signature) -> Self
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::from(value: secp256k1::ecdsa::Signature) -> Self
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::hash<H: core::hash::Hasher>(&self, state: &mut H)
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::into_iter(self) -> Self::IntoIter
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::is_empty(&self) -> bool
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::len(&self) -> usize
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::partial_cmp(&self, other: &secp256k1::ecdsa::serialized_signature::SerializedSignature) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::partial_cmp(&self, other: &[u8]) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ecdsa::serialized_signature::SerializedSignature::to_signature(&self) -> core::result::Result<secp256k1::ecdsa::Signature, secp256k1::Error>
pub fn secp256k1::ecdsa::Signature::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::ecdsa::Signature::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::ecdsa::Signature::as_mut_ptr(&mut self) -> *mut secp256k1_sys::Signature
pub fn secp256k1::ecdsa::Signature::as_ptr(&self) -> *const secp256k1_sys::Signature
pub fn secp256k1::ecdsa::Signature::clone(&self) -> secp256k1::ecdsa::Signature
pub fn secp256k1::ecdsa::Signature::cmp_fast_unstable(&self, other: &Self) -> core::cmp::Ordering
pub fn secp256k1::ecdsa::Signature::cmp(&self, other: &secp256k1::ecdsa::Signature) -> core::cmp::Ordering
pub fn secp256k1::ecdsa::Signature::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<Self, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::ecdsa::Signature::eq_fast_unstable(&self, other: &Self) -> bool
pub fn secp256k1::ecdsa::Signature::eq(&self, other: &secp256k1::ecdsa::Signature) -> bool
pub fn secp256k1::ecdsa::Signature::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ecdsa::Signature::from_compact(data: &[u8]) -> core::result::Result<secp256k1::ecdsa::Signature, secp256k1::Error>
pub fn secp256k1::ecdsa::Signature::from_der(data: &[u8]) -> core::result::Result<secp256k1::ecdsa::Signature, secp256k1::Error>
pub fn secp256k1::ecdsa::Signature::from_der_lax(data: &[u8]) -> core::result::Result<secp256k1::ecdsa::Signature, secp256k1::Error>
pub fn secp256k1::ecdsa::Signature::from(sig: secp256k1_sys::Signature) -> secp256k1::ecdsa::Signature
pub fn secp256k1::ecdsa::Signature::from_str(s: &str) -> core::result::Result<secp256k1::ecdsa::Signature, secp256k1::Error>
pub fn secp256k1::ecdsa::Signature::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::ecdsa::Signature::normalize_s(&mut self)
pub fn secp256k1::ecdsa::Signature::partial_cmp(&self, other: &secp256k1::ecdsa::Signature) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ecdsa::Signature::serialize_compact(&self) -> [u8; 64]
pub fn secp256k1::ecdsa::Signature::serialize_der(&self) -> secp256k1::ecdsa::serialized_signature::SerializedSignature
pub fn secp256k1::ecdsa::Signature::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::ecdsa::Signature::try_from(value: &'a secp256k1::ecdsa::serialized_signature::SerializedSignature) -> core::result::Result<Self, Self::Error>
pub fn secp256k1::ecdsa::Signature::try_from(value: secp256k1::ecdsa::serialized_signature::SerializedSignature) -> core::result::Result<Self, Self::Error>
pub fn secp256k1::ecdsa::Signature::verify(&self, msg: &secp256k1::Message, pk: &secp256k1::PublicKey) -> core::result::Result<(), secp256k1::Error>
pub fn secp256k1::ellswift::ElligatorSwift::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::ellswift::ElligatorSwift::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::ellswift::ElligatorSwift::clone(&self) -> secp256k1::ellswift::ElligatorSwift
pub fn secp256k1::ellswift::ElligatorSwift::cmp(&self, other: &secp256k1::ellswift::ElligatorSwift) -> core::cmp::Ordering
pub fn secp256k1::ellswift::ElligatorSwift::eq(&self, other: &secp256k1::ellswift::ElligatorSwift) -> bool
pub fn secp256k1::ellswift::ElligatorSwift::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ellswift::ElligatorSwift::from_array(ellswift: [u8; 64]) -> secp256k1::ellswift::ElligatorSwift
pub fn secp256k1::ellswift::ElligatorSwift::from_pubkey(pk: secp256k1::PublicKey) -> secp256k1::ellswift::ElligatorSwift
pub fn secp256k1::ellswift::ElligatorSwift::from_seckey<C: secp256k1::Verification>(secp: &secp256k1::Secp256k1<C>, sk: secp256k1::SecretKey, aux_rand: core::option::Option<[u8; 32]>) -> secp256k1::ellswift::ElligatorSwift
pub fn secp256k1::ellswift::ElligatorSwift::from_str(hex: &str) -> core::result::Result<Self, Self::Err>
pub fn secp256k1::ellswift::ElligatorSwift::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::ellswift::ElligatorSwift::new(secret_key: secp256k1::SecretKey, rand: [u8; 32]) -> secp256k1::ellswift::ElligatorSwift
pub fn secp256k1::ellswift::ElligatorSwift::partial_cmp(&self, other: &secp256k1::ellswift::ElligatorSwift) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ellswift::ElligatorSwiftParty::clone(&self) -> secp256k1::ellswift::ElligatorSwiftParty
pub fn secp256k1::ellswift::ElligatorSwiftParty::cmp(&self, other: &secp256k1::ellswift::ElligatorSwiftParty) -> core::cmp::Ordering
pub fn secp256k1::ellswift::ElligatorSwiftParty::eq(&self, other: &secp256k1::ellswift::ElligatorSwiftParty) -> bool
pub fn secp256k1::ellswift::ElligatorSwiftParty::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ellswift::ElligatorSwiftParty::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::ellswift::ElligatorSwiftParty::partial_cmp(&self, other: &secp256k1::ellswift::ElligatorSwiftParty) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ellswift::ElligatorSwiftSharedSecret::clone(&self) -> secp256k1::ellswift::ElligatorSwiftSharedSecret
pub fn secp256k1::ellswift::ElligatorSwiftSharedSecret::cmp(&self, other: &secp256k1::ellswift::ElligatorSwiftSharedSecret) -> core::cmp::Ordering
pub fn secp256k1::ellswift::ElligatorSwift::shared_secret(ellswift_a: secp256k1::ellswift::ElligatorSwift, ellswift_b: secp256k1::ellswift::ElligatorSwift, secret_key: secp256k1::SecretKey, party: secp256k1::ellswift::ElligatorSwiftParty, data: core::option::Option<&[u8]>) -> secp256k1::ellswift::ElligatorSwiftSharedSecret
pub fn secp256k1::ellswift::ElligatorSwiftSharedSecret::eq(&self, other: &secp256k1::ellswift::ElligatorSwiftSharedSecret) -> bool
pub fn secp256k1::ellswift::ElligatorSwiftSharedSecret::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::ellswift::ElligatorSwiftSharedSecret::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::ellswift::ElligatorSwiftSharedSecret::partial_cmp(&self, other: &secp256k1::ellswift::ElligatorSwiftSharedSecret) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ellswift::ElligatorSwift::shared_secret_with_hasher<F>(ellswift_a: secp256k1::ellswift::ElligatorSwift, ellswift_b: secp256k1::ellswift::ElligatorSwift, secret_key: secp256k1::SecretKey, party: secp256k1::ellswift::ElligatorSwiftParty, hash_function: F) -> secp256k1::ellswift::ElligatorSwiftSharedSecret where F: core::ops::function::FnMut([u8; 32], [u8; 64], [u8; 64]) -> secp256k1::ellswift::ElligatorSwiftSharedSecret
pub fn secp256k1::ellswift::ElligatorSwift::to_array(&self) -> [u8; 64]
pub fn secp256k1::Error::clone(&self) -> secp256k1::Error
pub fn secp256k1::Error::cmp(&self, other: &secp256k1::Error) -> core::cmp::Ordering
pub fn secp256k1::Error::eq(&self, other: &secp256k1::Error) -> bool
pub fn secp256k1::Error::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::Error::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::result::Result<(), core::fmt::Error>
pub fn secp256k1::Error::from(error: secp256k1::InvalidParityValue) -> Self
pub fn secp256k1::Error::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::Error::partial_cmp(&self, other: &secp256k1::Error) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::Error::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
pub fn secp256k1::generate_keypair<R: rand::rng::Rng + core::marker::Sized>(rng: &mut R) -> (secp256k1::SecretKey, secp256k1::PublicKey)
pub fn secp256k1::global::GlobalContext::clone(&self) -> secp256k1::global::GlobalContext
pub fn secp256k1::global::GlobalContext::deref(&self) -> &Self::Target
pub fn secp256k1::global::GlobalContext::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::InvalidParityValue::clone(&self) -> secp256k1::InvalidParityValue
pub fn secp256k1::InvalidParityValue::cmp(&self, other: &secp256k1::InvalidParityValue) -> core::cmp::Ordering
pub fn secp256k1::InvalidParityValue::eq(&self, other: &secp256k1::InvalidParityValue) -> bool
pub fn secp256k1::InvalidParityValue::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::InvalidParityValue::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::InvalidParityValue::partial_cmp(&self, other: &secp256k1::InvalidParityValue) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::Keypair::add_xonly_tweak<C: secp256k1::Verification>(self, secp: &secp256k1::Secp256k1<C>, tweak: &secp256k1::scalar::Scalar) -> core::result::Result<secp256k1::Keypair, secp256k1::Error>
pub fn secp256k1::Keypair::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::Keypair::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::Keypair::as_mut_ptr(&mut self) -> *mut secp256k1_sys::Keypair
pub fn secp256k1::Keypair::as_ptr(&self) -> *const secp256k1_sys::Keypair
pub fn secp256k1::Keypair::clone(&self) -> secp256k1::Keypair
pub fn secp256k1::Keypair::cmp_fast_unstable(&self, other: &Self) -> core::cmp::Ordering
pub fn secp256k1::Keypair::cmp(&self, other: &secp256k1::Keypair) -> core::cmp::Ordering
pub fn secp256k1::Keypair::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<Self, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::Keypair::display_secret(&self) -> DisplaySecret
pub fn secp256k1::Keypair::eq_fast_unstable(&self, other: &Self) -> bool
pub fn secp256k1::Keypair::eq(&self, other: &secp256k1::Keypair) -> bool
pub fn secp256k1::Keypair::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::Keypair::from_seckey_slice<C: secp256k1::Signing>(secp: &secp256k1::Secp256k1<C>, data: &[u8]) -> core::result::Result<secp256k1::Keypair, secp256k1::Error>
pub fn secp256k1::Keypair::from_seckey_str<C: secp256k1::Signing>(secp: &secp256k1::Secp256k1<C>, s: &str) -> core::result::Result<secp256k1::Keypair, secp256k1::Error>
pub fn secp256k1::Keypair::from_seckey_str_global(s: &str) -> core::result::Result<secp256k1::Keypair, secp256k1::Error>
pub fn secp256k1::Keypair::from_secret_key<C: secp256k1::Signing>(secp: &secp256k1::Secp256k1<C>, sk: &secp256k1::SecretKey) -> secp256k1::Keypair
pub fn secp256k1::Keypair::from_str(s: &str) -> core::result::Result<Self, Self::Err>
pub fn secp256k1::Keypair::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::Keypair::new_global<R: rand::rng::Rng + core::marker::Sized>(rng: &mut R) -> secp256k1::Keypair
pub fn secp256k1::Keypair::new<R: rand::rng::Rng + core::marker::Sized, C: secp256k1::Signing>(secp: &secp256k1::Secp256k1<C>, rng: &mut R) -> secp256k1::Keypair
pub fn secp256k1::Keypair::non_secure_erase(&mut self)
pub fn secp256k1::Keypair::partial_cmp(&self, other: &secp256k1::Keypair) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::Keypair::public_key(&self) -> secp256k1::PublicKey
pub fn secp256k1::Keypair::secret_bytes(&self) -> [u8; 32]
pub fn secp256k1::Keypair::secret_key(&self) -> secp256k1::SecretKey
pub fn secp256k1::Keypair::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::Keypair::sign_schnorr(&self, msg: secp256k1::Message) -> secp256k1::schnorr::Signature
pub fn secp256k1::Keypair::x_only_public_key(&self) -> (secp256k1::XOnlyPublicKey, secp256k1::Parity)
pub fn secp256k1::Message::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::Message::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::Message::as_ref(&self) -> &[u8; 32]
pub fn secp256k1::Message::clone(&self) -> secp256k1::Message
pub fn secp256k1::Message::cmp(&self, other: &secp256k1::Message) -> core::cmp::Ordering
pub fn secp256k1::Message::eq(&self, other: &secp256k1::Message) -> bool
pub fn secp256k1::Message::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::Message::from_digest(digest: [u8; 32]) -> secp256k1::Message
pub fn secp256k1::Message::from_digest_slice(digest: &[u8]) -> core::result::Result<secp256k1::Message, secp256k1::Error>
pub fn secp256k1::Message::from_slice(digest: &[u8]) -> core::result::Result<secp256k1::Message, secp256k1::Error>
pub fn secp256k1::Message::from(t: T) -> secp256k1::Message
pub fn secp256k1::Message::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::Message::index(&self, index: I) -> &Self::Output
pub fn secp256k1::Message::partial_cmp(&self, other: &secp256k1::Message) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::Parity::bitxor(self, rhs: secp256k1::Parity) -> Self::Output
pub fn secp256k1::Parity::clone(&self) -> secp256k1::Parity
pub fn secp256k1::Parity::cmp(&self, other: &secp256k1::Parity) -> core::cmp::Ordering
pub fn secp256k1::Parity::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<Self, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::Parity::eq(&self, other: &secp256k1::Parity) -> bool
pub fn secp256k1::Parity::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::Parity::from_i32(parity: i32) -> core::result::Result<secp256k1::Parity, secp256k1::InvalidParityValue>
pub fn secp256k1::Parity::from_u8(parity: u8) -> core::result::Result<secp256k1::Parity, secp256k1::InvalidParityValue>
pub fn secp256k1::Parity::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::Parity::partial_cmp(&self, other: &secp256k1::Parity) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::Parity::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::Parity::to_i32(self) -> i32
pub fn secp256k1::Parity::to_u8(self) -> u8
pub fn secp256k1::Parity::try_from(parity: i32) -> core::result::Result<Self, Self::Error>
pub fn secp256k1::Parity::try_from(parity: u8) -> core::result::Result<Self, Self::Error>
pub fn secp256k1::PublicKey::add_exp_tweak<C: secp256k1::Verification>(self, secp: &secp256k1::Secp256k1<C>, tweak: &secp256k1::scalar::Scalar) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::PublicKey::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::PublicKey::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::PublicKey::as_mut_ptr(&mut self) -> *mut secp256k1_sys::PublicKey
pub fn secp256k1::PublicKey::as_ptr(&self) -> *const secp256k1_sys::PublicKey
pub fn secp256k1::PublicKey::clone(&self) -> secp256k1::PublicKey
pub fn secp256k1::PublicKey::cmp_fast_unstable(&self, other: &Self) -> core::cmp::Ordering
pub fn secp256k1::PublicKey::cmp(&self, other: &secp256k1::PublicKey) -> core::cmp::Ordering
pub fn secp256k1::PublicKey::combine_keys(keys: &[&secp256k1::PublicKey]) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::PublicKey::combine(&self, other: &secp256k1::PublicKey) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::PublicKey::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<secp256k1::PublicKey, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::PublicKey::eq_fast_unstable(&self, other: &Self) -> bool
pub fn secp256k1::PublicKey::eq(&self, other: &secp256k1::PublicKey) -> bool
pub fn secp256k1::PublicKey::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::PublicKey::from_ellswift(ellswift: secp256k1::ellswift::ElligatorSwift) -> secp256k1::PublicKey
pub fn secp256k1::PublicKey::from_keypair(keypair: &secp256k1::Keypair) -> Self
pub fn secp256k1::PublicKey::from(pair: &'a secp256k1::Keypair) -> Self
pub fn secp256k1::PublicKey::from(pair: secp256k1::Keypair) -> Self
pub fn secp256k1::PublicKey::from(pk: secp256k1_sys::PublicKey) -> secp256k1::PublicKey
pub fn secp256k1::PublicKey::from_secret_key<C: secp256k1::Signing>(secp: &secp256k1::Secp256k1<C>, sk: &secp256k1::SecretKey) -> secp256k1::PublicKey
pub fn secp256k1::PublicKey::from_secret_key_global(sk: &secp256k1::SecretKey) -> secp256k1::PublicKey
pub fn secp256k1::PublicKey::from_slice(data: &[u8]) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::PublicKey::from_str(s: &str) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::PublicKey::from_x_only_public_key(pk: secp256k1::XOnlyPublicKey, parity: secp256k1::Parity) -> secp256k1::PublicKey
pub fn secp256k1::PublicKey::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::PublicKey::mul_tweak<C: secp256k1::Verification>(self, secp: &secp256k1::Secp256k1<C>, other: &secp256k1::scalar::Scalar) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::PublicKey::negate<C: secp256k1::Verification>(self, secp: &secp256k1::Secp256k1<C>) -> secp256k1::PublicKey
pub fn secp256k1::PublicKey::partial_cmp(&self, other: &secp256k1::PublicKey) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::PublicKey::serialize(&self) -> [u8; 33]
pub fn secp256k1::PublicKey::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::PublicKey::serialize_uncompressed(&self) -> [u8; 65]
pub fn secp256k1::PublicKey::verify<C: secp256k1::Verification>(&self, secp: &secp256k1::Secp256k1<C>, msg: &secp256k1::Message, sig: &secp256k1::ecdsa::Signature) -> core::result::Result<(), secp256k1::Error>
pub fn secp256k1::PublicKey::x_only_public_key(&self) -> (secp256k1::XOnlyPublicKey, secp256k1::Parity)
pub fn secp256k1::scalar::OutOfRangeError::clone(&self) -> secp256k1::scalar::OutOfRangeError
pub fn secp256k1::scalar::OutOfRangeError::eq(&self, other: &secp256k1::scalar::OutOfRangeError) -> bool
pub fn secp256k1::scalar::OutOfRangeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::scalar::OutOfRangeError::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::scalar::Scalar::clone(&self) -> secp256k1::scalar::Scalar
pub fn secp256k1::scalar::Scalar::cmp(&self, other: &secp256k1::scalar::Scalar) -> core::cmp::Ordering
pub fn secp256k1::scalar::Scalar::eq(&self, other: &secp256k1::scalar::Scalar) -> bool
pub fn secp256k1::scalar::Scalar::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::scalar::Scalar::from_be_bytes(value: [u8; 32]) -> core::result::Result<Self, secp256k1::scalar::OutOfRangeError>
pub fn secp256k1::scalar::Scalar::from_le_bytes(value: [u8; 32]) -> core::result::Result<Self, secp256k1::scalar::OutOfRangeError>
pub fn secp256k1::scalar::Scalar::from(value: secp256k1::SecretKey) -> Self
pub fn secp256k1::scalar::Scalar::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::scalar::Scalar::index(&self, index: I) -> &Self::Output
pub fn secp256k1::scalar::Scalar::non_secure_erase(&mut self)
pub fn secp256k1::scalar::Scalar::partial_cmp(&self, other: &secp256k1::scalar::Scalar) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::scalar::Scalar::random_custom<R: rand::rng::Rng>(rng: R) -> Self
pub fn secp256k1::scalar::Scalar::random() -> Self
pub fn secp256k1::scalar::Scalar::to_be_bytes(self) -> [u8; 32]
pub fn secp256k1::scalar::Scalar::to_le_bytes(self) -> [u8; 32]
pub fn secp256k1::schnorr::Signature::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::schnorr::Signature::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::schnorr::Signature::as_ref(&self) -> &[u8; 64]
pub fn secp256k1::schnorr::Signature::clone(&self) -> secp256k1::schnorr::Signature
pub fn secp256k1::schnorr::Signature::cmp(&self, other: &secp256k1::schnorr::Signature) -> core::cmp::Ordering
pub fn secp256k1::schnorr::Signature::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<Self, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::schnorr::Signature::eq(&self, other: &secp256k1::schnorr::Signature) -> bool
pub fn secp256k1::schnorr::Signature::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::schnorr::Signature::from_slice(data: &[u8]) -> core::result::Result<secp256k1::schnorr::Signature, secp256k1::Error>
pub fn secp256k1::schnorr::Signature::from_str(s: &str) -> core::result::Result<secp256k1::schnorr::Signature, secp256k1::Error>
pub fn secp256k1::schnorr::Signature::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::schnorr::Signature::index(&self, index: I) -> &Self::Output
pub fn secp256k1::schnorr::Signature::partial_cmp(&self, other: &secp256k1::schnorr::Signature) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::schnorr::Signature::serialize(&self) -> [u8; 64]
pub fn secp256k1::schnorr::Signature::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::schnorr::Signature::verify(&self, msg: &secp256k1::Message, pk: &secp256k1::XOnlyPublicKey) -> core::result::Result<(), secp256k1::Error>
pub fn secp256k1::Secp256k1<C>::clone(&self) -> secp256k1::Secp256k1<C>
pub fn secp256k1::Secp256k1<C>::ctx(&self) -> core::ptr::non_null::NonNull<secp256k1_sys::Context>
pub fn secp256k1::Secp256k1<C>::drop(&mut self)
pub fn secp256k1::Secp256k1<C>::eq(&self, _other: &secp256k1::Secp256k1<C>) -> bool
pub fn secp256k1::Secp256k1<C>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::Secp256k1<C>::generate_keypair<R: rand::rng::Rng + core::marker::Sized>(&self, rng: &mut R) -> (secp256k1::SecretKey, secp256k1::PublicKey)
pub fn secp256k1::Secp256k1<C>::gen_new() -> secp256k1::Secp256k1<C>
pub fn secp256k1::Secp256k1<C>::preallocated_gen_new(buf: &'buf mut [secp256k1_sys::types::AlignedType]) -> core::result::Result<secp256k1::Secp256k1<C>, secp256k1::Error>
pub fn secp256k1::Secp256k1<C>::preallocate_size_gen() -> usize
pub fn secp256k1::Secp256k1<C>::randomize<R: rand::rng::Rng + core::marker::Sized>(&mut self, rng: &mut R)
pub fn secp256k1::Secp256k1<C>::recover_ecdsa(&self, msg: &secp256k1::Message, sig: &secp256k1::ecdsa::RecoverableSignature) -> core::result::Result<secp256k1::PublicKey, secp256k1::Error>
pub fn secp256k1::Secp256k1<C>::seeded_randomize(&mut self, seed: &[u8; 32])
pub fn secp256k1::Secp256k1<C>::sign_ecdsa_grind_r(&self, msg: &secp256k1::Message, sk: &secp256k1::SecretKey, bytes_to_grind: usize) -> secp256k1::ecdsa::Signature
pub fn secp256k1::Secp256k1<C>::sign_ecdsa_low_r(&self, msg: &secp256k1::Message, sk: &secp256k1::SecretKey) -> secp256k1::ecdsa::Signature
pub fn secp256k1::Secp256k1<C>::sign_ecdsa_recoverable(&self, msg: &secp256k1::Message, sk: &secp256k1::SecretKey) -> secp256k1::ecdsa::RecoverableSignature
pub fn secp256k1::Secp256k1<C>::sign_ecdsa_recoverable_with_noncedata(&self, msg: &secp256k1::Message, sk: &secp256k1::SecretKey, noncedata: &[u8; 32]) -> secp256k1::ecdsa::RecoverableSignature
pub fn secp256k1::Secp256k1<C>::sign_ecdsa(&self, msg: &secp256k1::Message, sk: &secp256k1::SecretKey) -> secp256k1::ecdsa::Signature
pub fn secp256k1::Secp256k1<C>::sign_ecdsa_with_noncedata(&self, msg: &secp256k1::Message, sk: &secp256k1::SecretKey, noncedata: &[u8; 32]) -> secp256k1::ecdsa::Signature
pub fn secp256k1::Secp256k1<C>::sign_schnorr_no_aux_rand(&self, msg: &secp256k1::Message, keypair: &secp256k1::Keypair) -> secp256k1::schnorr::Signature
pub fn secp256k1::Secp256k1<C>::sign_schnorr(&self, msg: &secp256k1::Message, keypair: &secp256k1::Keypair) -> secp256k1::schnorr::Signature
pub fn secp256k1::Secp256k1<C>::sign_schnorr_with_aux_rand(&self, msg: &secp256k1::Message, keypair: &secp256k1::Keypair, aux_rand: &[u8; 32]) -> secp256k1::schnorr::Signature
pub fn secp256k1::Secp256k1<C>::sign_schnorr_with_rng<R: rand::rng::Rng + rand_core::CryptoRng>(&self, msg: &secp256k1::Message, keypair: &secp256k1::Keypair, rng: &mut R) -> secp256k1::schnorr::Signature
pub fn secp256k1::Secp256k1<C>::verify_ecdsa(&self, msg: &secp256k1::Message, sig: &secp256k1::ecdsa::Signature, pk: &secp256k1::PublicKey) -> core::result::Result<(), secp256k1::Error>
pub fn secp256k1::Secp256k1<C>::verify_schnorr(&self, sig: &secp256k1::schnorr::Signature, msg: &secp256k1::Message, pubkey: &secp256k1::XOnlyPublicKey) -> core::result::Result<(), secp256k1::Error>
pub fn secp256k1::Secp256k1<secp256k1::All>::default() -> Self
pub fn secp256k1::Secp256k1<secp256k1::All>::new() -> secp256k1::Secp256k1<secp256k1::All>
pub fn secp256k1::Secp256k1<secp256k1::AllPreallocated<'buf>>::preallocated_new(buf: &'buf mut [secp256k1_sys::types::AlignedType]) -> core::result::Result<secp256k1::Secp256k1<secp256k1::AllPreallocated<'buf>>, secp256k1::Error>
pub fn secp256k1::Secp256k1<secp256k1::AllPreallocated<'buf>>::preallocate_size() -> usize
pub fn secp256k1::Secp256k1<secp256k1::SignOnlyPreallocated<'buf>>::preallocated_signing_only(buf: &'buf mut [secp256k1_sys::types::AlignedType]) -> core::result::Result<secp256k1::Secp256k1<secp256k1::SignOnlyPreallocated<'buf>>, secp256k1::Error>
pub fn secp256k1::Secp256k1<secp256k1::SignOnlyPreallocated<'buf>>::preallocate_signing_size() -> usize
pub fn secp256k1::Secp256k1<secp256k1::SignOnly>::signing_only() -> secp256k1::Secp256k1<secp256k1::SignOnly>
pub fn secp256k1::Secp256k1<secp256k1::VerifyOnlyPreallocated<'buf>>::preallocated_verification_only(buf: &'buf mut [secp256k1_sys::types::AlignedType]) -> core::result::Result<secp256k1::Secp256k1<secp256k1::VerifyOnlyPreallocated<'buf>>, secp256k1::Error>
pub fn secp256k1::Secp256k1<secp256k1::VerifyOnlyPreallocated<'buf>>::preallocate_verification_size() -> usize
pub fn secp256k1::Secp256k1<secp256k1::VerifyOnly>::verification_only() -> secp256k1::Secp256k1<secp256k1::VerifyOnly>
pub fn secp256k1::SecretKey::add_tweak(self, tweak: &secp256k1::scalar::Scalar) -> core::result::Result<secp256k1::SecretKey, secp256k1::Error>
pub fn secp256k1::SecretKey::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::SecretKey::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::SecretKey::as_ref(&self) -> &[u8; 32]
pub fn secp256k1::SecretKey::clone(&self) -> secp256k1::SecretKey
pub fn secp256k1::SecretKey::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<Self, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::SecretKey::display_secret(&self) -> DisplaySecret
pub fn secp256k1::SecretKey::eq(&self, other: &Self) -> bool
pub fn secp256k1::SecretKey::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::SecretKey::from_keypair(keypair: &secp256k1::Keypair) -> Self
pub fn secp256k1::SecretKey::from(pair: &'a secp256k1::Keypair) -> Self
pub fn secp256k1::SecretKey::from(pair: secp256k1::Keypair) -> Self
pub fn secp256k1::SecretKey::from_slice(data: &[u8]) -> core::result::Result<secp256k1::SecretKey, secp256k1::Error>
pub fn secp256k1::SecretKey::from_str(s: &str) -> core::result::Result<secp256k1::SecretKey, secp256k1::Error>
pub fn secp256k1::SecretKey::from(t: T) -> secp256k1::SecretKey
pub fn secp256k1::SecretKey::index(&self, index: I) -> &Self::Output
pub fn secp256k1::SecretKey::keypair<C: secp256k1::Signing>(&self, secp: &secp256k1::Secp256k1<C>) -> secp256k1::Keypair
pub fn secp256k1::SecretKey::mul_tweak(self, tweak: &secp256k1::scalar::Scalar) -> core::result::Result<secp256k1::SecretKey, secp256k1::Error>
pub fn secp256k1::SecretKey::negate(self) -> secp256k1::SecretKey
pub fn secp256k1::SecretKey::new<R: rand::rng::Rng + core::marker::Sized>(rng: &mut R) -> secp256k1::SecretKey
pub fn secp256k1::SecretKey::non_secure_erase(&mut self)
pub fn secp256k1::SecretKey::public_key<C: secp256k1::Signing>(&self, secp: &secp256k1::Secp256k1<C>) -> secp256k1::PublicKey
pub fn secp256k1::SecretKey::secret_bytes(&self) -> [u8; 32]
pub fn secp256k1::SecretKey::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::SecretKey::sign_ecdsa(&self, msg: secp256k1::Message) -> secp256k1::ecdsa::Signature
pub fn secp256k1::SecretKey::x_only_public_key<C: secp256k1::Signing>(&self, secp: &secp256k1::Secp256k1<C>) -> (secp256k1::XOnlyPublicKey, secp256k1::Parity)
pub fn secp256k1::SignOnly::clone(&self) -> secp256k1::SignOnly
pub fn secp256k1::SignOnly::cmp(&self, other: &secp256k1::SignOnly) -> core::cmp::Ordering
pub fn secp256k1::SignOnly::eq(&self, other: &secp256k1::SignOnly) -> bool
pub fn secp256k1::SignOnly::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::SignOnly::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::SignOnly::partial_cmp(&self, other: &secp256k1::SignOnly) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::SignOnlyPreallocated<'buf>::clone(&self) -> secp256k1::SignOnlyPreallocated<'buf>
pub fn secp256k1::SignOnlyPreallocated<'buf>::cmp(&self, other: &secp256k1::SignOnlyPreallocated<'buf>) -> core::cmp::Ordering
pub fn secp256k1::SignOnlyPreallocated<'buf>::eq(&self, other: &secp256k1::SignOnlyPreallocated<'buf>) -> bool
pub fn secp256k1::SignOnlyPreallocated<'buf>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::SignOnlyPreallocated<'buf>::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::SignOnlyPreallocated<'buf>::partial_cmp(&self, other: &secp256k1::SignOnlyPreallocated<'buf>) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::ThirtyTwoByteHash::into_32(self) -> [u8; 32]
pub fn secp256k1::VerifyOnly::clone(&self) -> secp256k1::VerifyOnly
pub fn secp256k1::VerifyOnly::cmp(&self, other: &secp256k1::VerifyOnly) -> core::cmp::Ordering
pub fn secp256k1::VerifyOnly::eq(&self, other: &secp256k1::VerifyOnly) -> bool
pub fn secp256k1::VerifyOnly::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::VerifyOnly::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::VerifyOnly::partial_cmp(&self, other: &secp256k1::VerifyOnly) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::VerifyOnlyPreallocated<'buf>::clone(&self) -> secp256k1::VerifyOnlyPreallocated<'buf>
pub fn secp256k1::VerifyOnlyPreallocated<'buf>::cmp(&self, other: &secp256k1::VerifyOnlyPreallocated<'buf>) -> core::cmp::Ordering
pub fn secp256k1::VerifyOnlyPreallocated<'buf>::eq(&self, other: &secp256k1::VerifyOnlyPreallocated<'buf>) -> bool
pub fn secp256k1::VerifyOnlyPreallocated<'buf>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::VerifyOnlyPreallocated<'buf>::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::VerifyOnlyPreallocated<'buf>::partial_cmp(&self, other: &secp256k1::VerifyOnlyPreallocated<'buf>) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::XOnlyPublicKey::add_tweak<V: secp256k1::Verification>(self, secp: &secp256k1::Secp256k1<V>, tweak: &secp256k1::scalar::Scalar) -> core::result::Result<(secp256k1::XOnlyPublicKey, secp256k1::Parity), secp256k1::Error>
pub fn secp256k1::XOnlyPublicKey::as_c_ptr(&self) -> *const Self::Target
pub fn secp256k1::XOnlyPublicKey::as_mut_c_ptr(&mut self) -> *mut Self::Target
pub fn secp256k1::XOnlyPublicKey::as_mut_ptr(&mut self) -> *mut secp256k1_sys::XOnlyPublicKey
pub fn secp256k1::XOnlyPublicKey::as_ptr(&self) -> *const secp256k1_sys::XOnlyPublicKey
pub fn secp256k1::XOnlyPublicKey::clone(&self) -> secp256k1::XOnlyPublicKey
pub fn secp256k1::XOnlyPublicKey::cmp_fast_unstable(&self, other: &Self) -> core::cmp::Ordering
pub fn secp256k1::XOnlyPublicKey::cmp(&self, other: &secp256k1::XOnlyPublicKey) -> core::cmp::Ordering
pub fn secp256k1::XOnlyPublicKey::deserialize<D: serde::de::Deserializer<'de>>(d: D) -> core::result::Result<Self, <D as serde::de::Deserializer>::Error>
pub fn secp256k1::XOnlyPublicKey::eq_fast_unstable(&self, other: &Self) -> bool
pub fn secp256k1::XOnlyPublicKey::eq(&self, other: &secp256k1::XOnlyPublicKey) -> bool
pub fn secp256k1::XOnlyPublicKey::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub fn secp256k1::XOnlyPublicKey::from_keypair(keypair: &secp256k1::Keypair) -> (secp256k1::XOnlyPublicKey, secp256k1::Parity)
pub fn secp256k1::XOnlyPublicKey::from(pk: secp256k1_sys::XOnlyPublicKey) -> secp256k1::XOnlyPublicKey
pub fn secp256k1::XOnlyPublicKey::from_slice(data: &[u8]) -> core::result::Result<secp256k1::XOnlyPublicKey, secp256k1::Error>
pub fn secp256k1::XOnlyPublicKey::from(src: secp256k1::PublicKey) -> secp256k1::XOnlyPublicKey
pub fn secp256k1::XOnlyPublicKey::from_str(s: &str) -> core::result::Result<secp256k1::XOnlyPublicKey, secp256k1::Error>
pub fn secp256k1::XOnlyPublicKey::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
pub fn secp256k1::XOnlyPublicKey::partial_cmp(&self, other: &secp256k1::XOnlyPublicKey) -> core::option::Option<core::cmp::Ordering>
pub fn secp256k1::XOnlyPublicKey::public_key(&self, parity: secp256k1::Parity) -> secp256k1::PublicKey
pub fn secp256k1::XOnlyPublicKey::serialize(&self) -> [u8; 32]
pub fn secp256k1::XOnlyPublicKey::serialize<S: serde::ser::Serializer>(&self, s: S) -> core::result::Result<<S as serde::ser::Serializer>::Ok, <S as serde::ser::Serializer>::Error>
pub fn secp256k1::XOnlyPublicKey::tweak_add_check<V: secp256k1::Verification>(&self, secp: &secp256k1::Secp256k1<V>, tweaked_key: &Self, tweaked_parity: secp256k1::Parity, tweak: secp256k1::scalar::Scalar) -> bool
pub fn secp256k1::XOnlyPublicKey::verify<C: secp256k1::Verification>(&self, secp: &secp256k1::Secp256k1<C>, msg: &secp256k1::Message, sig: &secp256k1::schnorr::Signature) -> core::result::Result<(), secp256k1::Error>
pub fn [u8]::eq(&self, other: &secp256k1::ecdsa::serialized_signature::SerializedSignature) -> bool
pub fn u8::from(parity: secp256k1::Parity) -> u8
pub fn [u8]::partial_cmp(&self, other: &secp256k1::ecdsa::serialized_signature::SerializedSignature) -> core::option::Option<core::cmp::Ordering>
pub macro secp256k1::impl_array_newtype!
pub mod secp256k1
pub mod secp256k1::constants
pub mod secp256k1::ecdh
pub mod secp256k1::ecdsa
pub mod secp256k1::ecdsa::serialized_signature
pub mod secp256k1::ellswift
pub mod secp256k1::global
pub mod secp256k1::scalar
pub mod secp256k1::schnorr
pub secp256k1::ellswift::ElligatorSwiftParty::A
pub secp256k1::ellswift::ElligatorSwiftParty::B
pub secp256k1::Error::IncorrectSignature
pub secp256k1::Error::InvalidEllSwift
pub secp256k1::Error::InvalidMessage
pub secp256k1::Error::InvalidParityValue(secp256k1::InvalidParityValue)
pub secp256k1::Error::InvalidPublicKey
pub secp256k1::Error::InvalidPublicKeySum
pub secp256k1::Error::InvalidRecoveryId
pub secp256k1::Error::InvalidSecretKey
pub secp256k1::Error::InvalidSharedSecret
pub secp256k1::Error::InvalidSignature
pub secp256k1::Error::InvalidTweak
pub secp256k1::Error::NotEnoughMemory
pub secp256k1::Parity::Even = 0
pub secp256k1::Parity::Odd = 1
pub static secp256k1::global::SECP256K1: &secp256k1::global::GlobalContext
pub static secp256k1::SECP256K1: &secp256k1::global::GlobalContext
pub struct secp256k1::AllPreallocated<'buf>
pub struct secp256k1::ecdh::SharedSecret(_)
pub struct secp256k1::ecdsa::RecoverableSignature(_)
pub struct secp256k1::ecdsa::RecoveryId(_)