@@ -28,7 +28,7 @@ extern crate core;
28
28
#[ cfg( feature = "alloc" ) ]
29
29
extern crate alloc;
30
30
31
- #[ cfg( fuzzing ) ]
31
+ #[ cfg( secp256k1_fuzz ) ]
32
32
const THIS_UNUSED_CONSTANT_IS_YOUR_WARNING_THAT_ALL_THE_CRYPTO_IN_THIS_LIB_IS_DISABLED_FOR_FUZZING : usize = 0 ;
33
33
34
34
mod macros;
@@ -133,7 +133,7 @@ impl SchnorrSigExtraParams {
133
133
/// Library-internal representation of a Secp256k1 public key
134
134
#[ repr( C ) ]
135
135
#[ derive( Copy , Clone ) ]
136
- #[ cfg_attr( fuzzing , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
136
+ #[ cfg_attr( secp256k1_fuzz , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
137
137
pub struct PublicKey ( [ c_uchar ; 64 ] ) ;
138
138
impl_array_newtype ! ( PublicKey , c_uchar, 64 ) ;
139
139
impl_raw_debug ! ( PublicKey ) ;
@@ -190,14 +190,14 @@ impl PublicKey {
190
190
}
191
191
}
192
192
193
- #[ cfg( not( fuzzing ) ) ]
193
+ #[ cfg( not( secp256k1_fuzz ) ) ]
194
194
impl PartialOrd for PublicKey {
195
195
fn partial_cmp ( & self , other : & PublicKey ) -> Option < core:: cmp:: Ordering > {
196
196
Some ( self . cmp ( other) )
197
197
}
198
198
}
199
199
200
- #[ cfg( not( fuzzing ) ) ]
200
+ #[ cfg( not( secp256k1_fuzz ) ) ]
201
201
impl Ord for PublicKey {
202
202
fn cmp ( & self , other : & PublicKey ) -> core:: cmp:: Ordering {
203
203
let ret = unsafe {
@@ -207,17 +207,17 @@ impl Ord for PublicKey {
207
207
}
208
208
}
209
209
210
- #[ cfg( not( fuzzing ) ) ]
210
+ #[ cfg( not( secp256k1_fuzz ) ) ]
211
211
impl PartialEq for PublicKey {
212
212
fn eq ( & self , other : & Self ) -> bool {
213
213
self . cmp ( other) == core:: cmp:: Ordering :: Equal
214
214
}
215
215
}
216
216
217
- #[ cfg( not( fuzzing ) ) ]
217
+ #[ cfg( not( secp256k1_fuzz ) ) ]
218
218
impl Eq for PublicKey { }
219
219
220
- #[ cfg( not( fuzzing ) ) ]
220
+ #[ cfg( not( secp256k1_fuzz ) ) ]
221
221
impl core:: hash:: Hash for PublicKey {
222
222
fn hash < H : core:: hash:: Hasher > ( & self , state : & mut H ) {
223
223
let ser = self . serialize ( ) ;
@@ -228,7 +228,7 @@ impl core::hash::Hash for PublicKey {
228
228
/// Library-internal representation of a Secp256k1 signature
229
229
#[ repr( C ) ]
230
230
#[ derive( Copy , Clone ) ]
231
- #[ cfg_attr( fuzzing , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
231
+ #[ cfg_attr( secp256k1_fuzz , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
232
232
pub struct Signature ( [ c_uchar ; 64 ] ) ;
233
233
impl_array_newtype ! ( Signature , c_uchar, 64 ) ;
234
234
impl_raw_debug ! ( Signature ) ;
@@ -281,14 +281,14 @@ impl Signature {
281
281
}
282
282
}
283
283
284
- #[ cfg( not( fuzzing ) ) ]
284
+ #[ cfg( not( secp256k1_fuzz ) ) ]
285
285
impl PartialOrd for Signature {
286
286
fn partial_cmp ( & self , other : & Signature ) -> Option < core:: cmp:: Ordering > {
287
287
Some ( self . cmp ( other) )
288
288
}
289
289
}
290
290
291
- #[ cfg( not( fuzzing ) ) ]
291
+ #[ cfg( not( secp256k1_fuzz ) ) ]
292
292
impl Ord for Signature {
293
293
fn cmp ( & self , other : & Signature ) -> core:: cmp:: Ordering {
294
294
let this = self . serialize ( ) ;
@@ -297,17 +297,17 @@ impl Ord for Signature {
297
297
}
298
298
}
299
299
300
- #[ cfg( not( fuzzing ) ) ]
300
+ #[ cfg( not( secp256k1_fuzz ) ) ]
301
301
impl PartialEq for Signature {
302
302
fn eq ( & self , other : & Self ) -> bool {
303
303
self . cmp ( other) == core:: cmp:: Ordering :: Equal
304
304
}
305
305
}
306
306
307
- #[ cfg( not( fuzzing ) ) ]
307
+ #[ cfg( not( secp256k1_fuzz ) ) ]
308
308
impl Eq for Signature { }
309
309
310
- #[ cfg( not( fuzzing ) ) ]
310
+ #[ cfg( not( secp256k1_fuzz ) ) ]
311
311
impl core:: hash:: Hash for Signature {
312
312
fn hash < H : core:: hash:: Hasher > ( & self , state : & mut H ) {
313
313
let ser = self . serialize ( ) ;
@@ -317,7 +317,7 @@ impl core::hash::Hash for Signature {
317
317
318
318
#[ repr( C ) ]
319
319
#[ derive( Copy , Clone ) ]
320
- #[ cfg_attr( fuzzing , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
320
+ #[ cfg_attr( secp256k1_fuzz , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
321
321
pub struct XOnlyPublicKey ( [ c_uchar ; 64 ] ) ;
322
322
impl_array_newtype ! ( XOnlyPublicKey , c_uchar, 64 ) ;
323
323
impl_raw_debug ! ( XOnlyPublicKey ) ;
@@ -370,14 +370,14 @@ impl XOnlyPublicKey {
370
370
}
371
371
}
372
372
373
- #[ cfg( not( fuzzing ) ) ]
373
+ #[ cfg( not( secp256k1_fuzz ) ) ]
374
374
impl PartialOrd for XOnlyPublicKey {
375
375
fn partial_cmp ( & self , other : & XOnlyPublicKey ) -> Option < core:: cmp:: Ordering > {
376
376
Some ( self . cmp ( other) )
377
377
}
378
378
}
379
379
380
- #[ cfg( not( fuzzing ) ) ]
380
+ #[ cfg( not( secp256k1_fuzz ) ) ]
381
381
impl Ord for XOnlyPublicKey {
382
382
fn cmp ( & self , other : & XOnlyPublicKey ) -> core:: cmp:: Ordering {
383
383
let ret = unsafe {
@@ -387,17 +387,17 @@ impl Ord for XOnlyPublicKey {
387
387
}
388
388
}
389
389
390
- #[ cfg( not( fuzzing ) ) ]
390
+ #[ cfg( not( secp256k1_fuzz ) ) ]
391
391
impl PartialEq for XOnlyPublicKey {
392
392
fn eq ( & self , other : & Self ) -> bool {
393
393
self . cmp ( other) == core:: cmp:: Ordering :: Equal
394
394
}
395
395
}
396
396
397
- #[ cfg( not( fuzzing ) ) ]
397
+ #[ cfg( not( secp256k1_fuzz ) ) ]
398
398
impl Eq for XOnlyPublicKey { }
399
399
400
- #[ cfg( not( fuzzing ) ) ]
400
+ #[ cfg( not( secp256k1_fuzz ) ) ]
401
401
impl core:: hash:: Hash for XOnlyPublicKey {
402
402
fn hash < H : core:: hash:: Hasher > ( & self , state : & mut H ) {
403
403
let ser = self . serialize ( ) ;
@@ -407,7 +407,7 @@ impl core::hash::Hash for XOnlyPublicKey {
407
407
408
408
#[ repr( C ) ]
409
409
#[ derive( Copy , Clone ) ]
410
- #[ cfg_attr( fuzzing , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
410
+ #[ cfg_attr( secp256k1_fuzz , derive( PartialEq , Eq , PartialOrd , Ord , Hash ) ) ]
411
411
pub struct KeyPair ( [ c_uchar ; 96 ] ) ;
412
412
impl_array_newtype ! ( KeyPair , c_uchar, 96 ) ;
413
413
impl_raw_debug ! ( KeyPair ) ;
@@ -492,14 +492,14 @@ pub fn non_secure_erase_impl<T>(dst: &mut T, src: T) {
492
492
atomic:: compiler_fence ( atomic:: Ordering :: SeqCst ) ;
493
493
}
494
494
495
- #[ cfg( not( fuzzing ) ) ]
495
+ #[ cfg( not( secp256k1_fuzz ) ) ]
496
496
impl PartialOrd for KeyPair {
497
497
fn partial_cmp ( & self , other : & KeyPair ) -> Option < core:: cmp:: Ordering > {
498
498
Some ( self . cmp ( other) )
499
499
}
500
500
}
501
501
502
- #[ cfg( not( fuzzing ) ) ]
502
+ #[ cfg( not( secp256k1_fuzz ) ) ]
503
503
impl Ord for KeyPair {
504
504
fn cmp ( & self , other : & KeyPair ) -> core:: cmp:: Ordering {
505
505
let this = self . public_key ( ) ;
@@ -508,17 +508,17 @@ impl Ord for KeyPair {
508
508
}
509
509
}
510
510
511
- #[ cfg( not( fuzzing ) ) ]
511
+ #[ cfg( not( secp256k1_fuzz ) ) ]
512
512
impl PartialEq for KeyPair {
513
513
fn eq ( & self , other : & Self ) -> bool {
514
514
self . cmp ( other) == core:: cmp:: Ordering :: Equal
515
515
}
516
516
}
517
517
518
- #[ cfg( not( fuzzing ) ) ]
518
+ #[ cfg( not( secp256k1_fuzz ) ) ]
519
519
impl Eq for KeyPair { }
520
520
521
- #[ cfg( not( fuzzing ) ) ]
521
+ #[ cfg( not( secp256k1_fuzz ) ) ]
522
522
impl core:: hash:: Hash for KeyPair {
523
523
fn hash < H : core:: hash:: Hasher > ( & self , state : & mut H ) {
524
524
// To hash the key pair we just hash the serialized public key. Since any change to the
@@ -615,7 +615,7 @@ extern "C" {
615
615
-> c_int ;
616
616
}
617
617
618
- #[ cfg( not( fuzzing ) ) ]
618
+ #[ cfg( not( secp256k1_fuzz ) ) ]
619
619
extern "C" {
620
620
// Contexts
621
621
#[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_8_1_context_preallocated_size" ) ]
@@ -996,7 +996,7 @@ impl<T> CPtr for [T] {
996
996
}
997
997
}
998
998
999
- #[ cfg( fuzzing ) ]
999
+ #[ cfg( secp256k1_fuzz ) ]
1000
1000
mod fuzz_dummy {
1001
1001
use super :: * ;
1002
1002
use core:: sync:: atomic:: { AtomicUsize , Ordering } ;
@@ -1482,7 +1482,7 @@ mod fuzz_dummy {
1482
1482
}
1483
1483
}
1484
1484
1485
- #[ cfg( fuzzing ) ]
1485
+ #[ cfg( secp256k1_fuzz ) ]
1486
1486
pub use self :: fuzz_dummy:: * ;
1487
1487
1488
1488
#[ cfg( test) ]
0 commit comments