File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cabal-version: 1.12
5
5
-- see: https://github.com/sol/hpack
6
6
7
7
name : libsecp256k1
8
- version : 0.2.0
8
+ version : 0.2.1
9
9
synopsis : Bindings for secp256k1
10
10
description : Sign and verify signatures using the secp256k1 library .
11
11
category : Crypto
Original file line number Diff line number Diff line change 1
1
name : libsecp256k1
2
- version : 0.2.0
2
+ version : 0.2.1
3
3
synopsis : Bindings for secp256k1
4
4
description : Sign and verify signatures using the secp256k1 library.
5
5
category : Crypto
Original file line number Diff line number Diff line change @@ -1117,7 +1117,7 @@ foreign import capi safe "secp256k1_schnorrsig.h value secp256k1_nonce_function_
1117
1117
-- 'taggedSha256' and then sign the hash. Tagged hashing allows
1118
1118
-- providing an context-specific tag for domain separation. This prevents
1119
1119
-- signatures from being valid in multiple contexts by accident.
1120
- foreign import capi safe " secp256k1_schnorrsig.h secp256k1_schnorrsig_sign "
1120
+ foreign import capi safe " secp256k1_schnorrsig.h secp256k1_schnorrsig_sign32 "
1121
1121
schnorrsigSign ::
1122
1122
-- | pointer to a context object, initialized for signing (cannot be NULL)
1123
1123
Ctx ->
@@ -1364,15 +1364,15 @@ foreign import capi safe "secp256k1.h secp256k1_scratch_space_destroy"
1364
1364
1365
1365
-- * Deprecated
1366
1366
{-# DEPRECATED ecPrivkeyNegate "use ecSeckeyNegate instead" #-}
1367
- foreign import capi safe " secp256k1.h secp256k1_ec_privkey_negate "
1367
+ foreign import capi safe " secp256k1.h secp256k1_ec_seckey_negate "
1368
1368
ecPrivkeyNegate ::
1369
1369
Ctx ->
1370
1370
Ptr Tweak32 ->
1371
1371
IO Ret
1372
1372
1373
1373
1374
1374
{-# DEPRECATED ecPrivkeyTweakAdd "use ecSeckeyTweakAdd instead" #-}
1375
- foreign import capi safe " secp256k1.h secp256k1_ec_privkey_tweak_add "
1375
+ foreign import capi safe " secp256k1.h secp256k1_ec_seckey_tweak_add "
1376
1376
ecPrivkeyTweakAdd ::
1377
1377
Ctx ->
1378
1378
Ptr Seckey32 ->
@@ -1381,7 +1381,7 @@ foreign import capi safe "secp256k1.h secp256k1_ec_privkey_tweak_add"
1381
1381
1382
1382
1383
1383
{-# DEPRECATED ecPrivkeyTweakMul "use ecSeckeyTweakMul instead" #-}
1384
- foreign import capi safe " secp256k1.h secp256k1_ec_privkey_tweak_mul "
1384
+ foreign import capi safe " secp256k1.h secp256k1_ec_seckey_tweak_mul "
1385
1385
ecPrivkeyTweakMul ::
1386
1386
Ctx ->
1387
1387
Ptr Seckey32 ->
You can’t perform that action at this time.
0 commit comments