2
0
mirror of synced 2025-02-19 17:14:28 +00:00

Added secp256k1_ecdsa_recoverable_signature_parse_compact().

This commit is contained in:
cheatfate 2018-03-19 16:47:21 +02:00
parent ee348dace4
commit bbb83bab0f

View File

@ -255,6 +255,11 @@ proc secp256k1_ecdsa_recoverable_signature_serialize_compact*(
## In: sig: a pointer to an initialized signature object (cannot be NULL)
##
proc secp256k1_ecdsa_recoverable_signature_parse_compact*(
ctx: ptr secp256k1_context;
sig: ptr secp256k1_ecdsa_recoverable_signature;
input64: ptr cuchar, recid: cint): cint {.secp.}
proc secp256k1_ecdh*(ctx: ptr secp256k1_context; output32: ptr cuchar;
pubkey: ptr secp256k1_pubkey;
input32: ptr cuchar): cint {.secp.}