File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -379,6 +379,12 @@ extern "C" {
379
379
tweak : * const c_uchar )
380
380
-> c_int ;
381
381
382
+ #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_ec_pubkey_cmp" ) ]
383
+ pub fn secp256k1_ec_pubkey_cmp ( cx : * const Context ,
384
+ pubkey1 : * const PublicKey ,
385
+ pubkey2 : * const PublicKey )
386
+ -> c_int ;
387
+
382
388
#[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_keypair_sec" ) ]
383
389
pub fn secp256k1_keypair_sec ( cx : * const Context ,
384
390
output_seckey : * mut c_uchar ,
@@ -390,6 +396,12 @@ extern "C" {
390
396
output_pubkey : * mut PublicKey ,
391
397
keypair : * const KeyPair )
392
398
-> c_int ;
399
+
400
+ #[ cfg_attr( not( rust_secp_no_symbol_renaming) , link_name = "rustsecp256k1_v0_5_0_xonly_pubkey_cmp" ) ]
401
+ pub fn secp256k1_xonly_pubkey_cmp ( cx : * const Context ,
402
+ pubkey1 : * const XOnlyPublicKey ,
403
+ pubkey2 : * const XOnlyPublicKey )
404
+ -> c_int ;
393
405
}
394
406
395
407
#[ cfg( not( fuzzing) ) ]
You can’t perform that action at this time.
0 commit comments