2014-08-12 02:26:14 +00:00
|
|
|
// Bitcoin secp256k1 bindings
|
|
|
|
// Written in 2014 by
|
|
|
|
// Dawid Ciężarkiewicz
|
|
|
|
// Andrew Poelstra
|
|
|
|
//
|
|
|
|
// To the extent possible under law, the author(s) have dedicated all
|
|
|
|
// copyright and related and neighboring rights to this software to
|
|
|
|
// the public domain worldwide. This software is distributed without
|
|
|
|
// any warranty.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the CC0 Public Domain Dedication
|
|
|
|
// along with this software.
|
|
|
|
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
//
|
2014-08-09 20:27:08 +00:00
|
|
|
|
2015-10-09 16:39:42 +00:00
|
|
|
//! # FFI bindings
|
|
|
|
//! Direct bindings to the underlying C library functions. These should
|
|
|
|
//! not be needed for most users.
|
2015-07-28 16:03:10 +00:00
|
|
|
use std::mem;
|
2015-09-20 19:52:29 +00:00
|
|
|
use libc::{c_int, c_uchar, c_uint, c_void, size_t};
|
2015-01-17 16:38:16 +00:00
|
|
|
|
2015-10-25 23:26:08 +00:00
|
|
|
/// Flag for context to enable no precomputation
|
|
|
|
pub const SECP256K1_START_NONE: c_uint = (1 << 0) | 0;
|
2015-09-20 17:52:46 +00:00
|
|
|
/// Flag for context to enable verification precomputation
|
2015-10-25 23:26:08 +00:00
|
|
|
pub const SECP256K1_START_VERIFY: c_uint = (1 << 0) | (1 << 8);
|
2015-09-20 17:52:46 +00:00
|
|
|
/// Flag for context to enable signing precomputation
|
2015-10-25 23:26:08 +00:00
|
|
|
pub const SECP256K1_START_SIGN: c_uint = (1 << 0) | (1 << 9);
|
|
|
|
/// Flag for keys to indicate uncompressed serialization format
|
|
|
|
pub const SECP256K1_SER_UNCOMPRESSED: c_uint = (1 << 1) | 0;
|
|
|
|
/// Flag for keys to indicate compressed serialization format
|
|
|
|
pub const SECP256K1_SER_COMPRESSED: c_uint = (1 << 1) | (1 << 8);
|
2014-08-09 20:27:08 +00:00
|
|
|
|
2015-04-06 05:13:38 +00:00
|
|
|
/// A nonce generation function. Ordinary users of the library
|
|
|
|
/// never need to see this type; only if you need to control
|
|
|
|
/// nonce generation do you need to use it. I have deliberately
|
|
|
|
/// made this hard to do: you have to write your own wrapper
|
|
|
|
/// around the FFI functions to use it. And it's an unsafe type.
|
|
|
|
/// Nonces are generated deterministically by RFC6979 by
|
|
|
|
/// default; there should be no need to ever change this.
|
|
|
|
pub type NonceFn = unsafe extern "C" fn(nonce32: *mut c_uchar,
|
|
|
|
msg32: *const c_uchar,
|
|
|
|
key32: *const c_uchar,
|
2015-07-28 16:03:10 +00:00
|
|
|
algo16: *const c_uchar,
|
2015-04-06 05:13:38 +00:00
|
|
|
attempt: c_uint,
|
|
|
|
data: *const c_void);
|
|
|
|
|
2015-07-28 17:38:01 +00:00
|
|
|
#[repr(C)] struct ContextInner(c_int);
|
2015-04-11 17:00:20 +00:00
|
|
|
|
|
|
|
/// A Secp256k1 context, containing various precomputed values and such
|
|
|
|
/// needed to do elliptic curve computations. If you create one of these
|
|
|
|
/// with `secp256k1_context_create` you MUST destroy it with
|
|
|
|
/// `secp256k1_context_destroy`, or else you will have a memory leak.
|
|
|
|
/// Furthermore, you MUST NOT use this object after destroying it; it is
|
|
|
|
/// `Copy` so the compiler will not help you to avoid this. There is no
|
|
|
|
/// need for ordinary users of this library to ever use this type directly.
|
|
|
|
#[repr(C)]
|
|
|
|
#[allow(raw_pointer_derive)]
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub struct Context(*mut ContextInner);
|
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
/// Library-internal representation of a Secp256k1 public key
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct PublicKey([c_uchar; 64]);
|
|
|
|
impl_array_newtype!(PublicKey, c_uchar, 64);
|
|
|
|
impl_raw_debug!(PublicKey);
|
|
|
|
|
|
|
|
impl PublicKey {
|
|
|
|
/// Create a new (zeroed) public key usable for the FFI interface
|
|
|
|
pub fn new() -> PublicKey { PublicKey([0; 64]) }
|
|
|
|
/// Create a new (uninitialized) public key usable for the FFI interface
|
|
|
|
pub unsafe fn blank() -> PublicKey { mem::uninitialized() }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Library-internal representation of a Secp256k1 signature
|
|
|
|
#[repr(C)]
|
|
|
|
#[allow(raw_pointer_derive)]
|
2015-09-18 20:22:48 +00:00
|
|
|
pub struct Signature([c_uchar; 64]);
|
|
|
|
impl_array_newtype!(Signature, c_uchar, 64);
|
2015-07-28 16:03:10 +00:00
|
|
|
impl_raw_debug!(Signature);
|
|
|
|
|
2015-09-18 20:22:48 +00:00
|
|
|
/// Library-internal representation of a Secp256k1 signature + recovery ID
|
|
|
|
#[repr(C)]
|
|
|
|
#[allow(raw_pointer_derive)]
|
|
|
|
pub struct RecoverableSignature([c_uchar; 65]);
|
|
|
|
impl_array_newtype!(RecoverableSignature, c_uchar, 65);
|
|
|
|
impl_raw_debug!(RecoverableSignature);
|
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
impl Signature {
|
2015-09-18 20:22:48 +00:00
|
|
|
/// Create a new (zeroed) signature usable for the FFI interface
|
|
|
|
pub fn new() -> Signature { Signature([0; 64]) }
|
|
|
|
/// Create a new (uninitialized) signature usable for the FFI interface
|
2015-07-28 16:03:10 +00:00
|
|
|
pub unsafe fn blank() -> Signature { mem::uninitialized() }
|
|
|
|
}
|
|
|
|
|
2015-09-18 20:22:48 +00:00
|
|
|
impl RecoverableSignature {
|
|
|
|
/// Create a new (zeroed) signature usable for the FFI interface
|
|
|
|
pub fn new() -> RecoverableSignature { RecoverableSignature([0; 65]) }
|
|
|
|
/// Create a new (uninitialized) signature usable for the FFI interface
|
|
|
|
pub unsafe fn blank() -> RecoverableSignature { mem::uninitialized() }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Library-internal representation of an ECDH shared secret
|
|
|
|
#[repr(C)]
|
|
|
|
#[allow(raw_pointer_derive)]
|
|
|
|
pub struct SharedSecret([c_uchar; 32]);
|
|
|
|
impl_array_newtype!(SharedSecret, c_uchar, 32);
|
|
|
|
impl_raw_debug!(SharedSecret);
|
|
|
|
|
|
|
|
impl SharedSecret {
|
|
|
|
/// Create a new (zeroed) signature usable for the FFI interface
|
|
|
|
pub fn new() -> SharedSecret { SharedSecret([0; 32]) }
|
|
|
|
/// Create a new (uninitialized) signature usable for the FFI interface
|
|
|
|
pub unsafe fn blank() -> SharedSecret { mem::uninitialized() }
|
|
|
|
}
|
|
|
|
|
2015-04-14 01:41:24 +00:00
|
|
|
unsafe impl Send for Context {}
|
|
|
|
unsafe impl Sync for Context {}
|
|
|
|
|
2014-08-09 20:27:08 +00:00
|
|
|
extern "C" {
|
2015-04-06 05:13:38 +00:00
|
|
|
pub static secp256k1_nonce_function_rfc6979: NonceFn;
|
|
|
|
|
|
|
|
pub static secp256k1_nonce_function_default: NonceFn;
|
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
// Contexts
|
2015-04-11 17:00:20 +00:00
|
|
|
pub fn secp256k1_context_create(flags: c_uint) -> Context;
|
2014-08-10 01:03:17 +00:00
|
|
|
|
2015-04-12 14:36:49 +00:00
|
|
|
pub fn secp256k1_context_clone(cx: Context) -> Context;
|
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
pub fn secp256k1_context_destroy(cx: Context);
|
2014-08-10 01:03:17 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
pub fn secp256k1_context_randomize(cx: Context,
|
|
|
|
seed32: *const c_uchar)
|
|
|
|
-> c_int;
|
|
|
|
|
2015-09-18 20:22:48 +00:00
|
|
|
// TODO secp256k1_context_set_illegal_callback
|
|
|
|
// TODO secp256k1_context_set_error_callback
|
|
|
|
// (Actually, I don't really want these exposed; if either of these
|
|
|
|
// are ever triggered it indicates a bug in rust-secp256k1, since
|
|
|
|
// one goal is to use Rust's type system to eliminate all possible
|
|
|
|
// bad inputs.)
|
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
// Pubkeys
|
|
|
|
pub fn secp256k1_ec_pubkey_parse(cx: Context, pk: *mut PublicKey,
|
2015-09-20 19:52:29 +00:00
|
|
|
input: *const c_uchar, in_len: size_t)
|
2015-07-28 16:03:10 +00:00
|
|
|
-> c_int;
|
|
|
|
|
|
|
|
pub fn secp256k1_ec_pubkey_serialize(cx: Context, output: *const c_uchar,
|
2015-09-20 19:52:29 +00:00
|
|
|
out_len: *mut size_t, pk: *const PublicKey
|
|
|
|
, compressed: c_uint)
|
2015-07-28 16:03:10 +00:00
|
|
|
-> c_int;
|
|
|
|
|
|
|
|
// Signatures
|
|
|
|
pub fn secp256k1_ecdsa_signature_parse_der(cx: Context, sig: *mut Signature,
|
2015-09-20 19:52:29 +00:00
|
|
|
input: *const c_uchar, in_len: size_t)
|
2015-07-28 16:03:10 +00:00
|
|
|
-> c_int;
|
|
|
|
|
2015-10-26 17:59:40 +00:00
|
|
|
pub fn secp256k1_ecdsa_signature_parse_der_lax_(cx: Context, sig: *mut Signature,
|
|
|
|
input: *const c_uchar, in_len: size_t)
|
|
|
|
-> c_int;
|
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
pub fn secp256k1_ecdsa_signature_serialize_der(cx: Context, output: *const c_uchar,
|
2015-10-28 12:46:46 +00:00
|
|
|
out_len: *mut size_t, sig: *const Signature)
|
2015-07-28 16:03:10 +00:00
|
|
|
-> c_int;
|
|
|
|
|
2015-09-18 20:22:48 +00:00
|
|
|
pub fn secp256k1_ecdsa_recoverable_signature_parse_compact(cx: Context, sig: *mut RecoverableSignature,
|
|
|
|
input64: *const c_uchar, recid: c_int)
|
|
|
|
-> c_int;
|
|
|
|
|
|
|
|
pub fn secp256k1_ecdsa_recoverable_signature_serialize_compact(cx: Context, output64: *const c_uchar,
|
|
|
|
recid: *mut c_int, sig: *const RecoverableSignature)
|
|
|
|
-> c_int;
|
|
|
|
|
|
|
|
pub fn secp256k1_ecdsa_recoverable_signature_convert(cx: Context, sig: *mut Signature,
|
|
|
|
input: *const RecoverableSignature)
|
|
|
|
-> c_int;
|
2015-07-28 16:03:10 +00:00
|
|
|
|
2015-10-26 19:25:18 +00:00
|
|
|
pub fn secp256k1_ecdsa_signature_normalize(cx: Context, out_sig: *mut Signature,
|
|
|
|
in_sig: *const Signature)
|
|
|
|
-> c_int;
|
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
// ECDSA
|
2015-09-18 20:22:48 +00:00
|
|
|
pub fn secp256k1_ecdsa_verify(cx: Context,
|
|
|
|
sig: *const Signature,
|
|
|
|
msg32: *const c_uchar,
|
|
|
|
pk: *const PublicKey)
|
2014-08-10 01:03:17 +00:00
|
|
|
-> c_int;
|
|
|
|
|
2015-09-18 20:22:48 +00:00
|
|
|
pub fn secp256k1_ecdsa_sign(cx: Context,
|
|
|
|
sig: *mut Signature,
|
|
|
|
msg32: *const c_uchar,
|
|
|
|
sk: *const c_uchar,
|
|
|
|
noncefn: NonceFn,
|
|
|
|
noncedata: *const c_void)
|
2014-08-10 01:03:17 +00:00
|
|
|
-> c_int;
|
|
|
|
|
2015-09-18 20:22:48 +00:00
|
|
|
pub fn secp256k1_ecdsa_sign_recoverable(cx: Context,
|
|
|
|
sig: *mut RecoverableSignature,
|
|
|
|
msg32: *const c_uchar,
|
|
|
|
sk: *const c_uchar,
|
|
|
|
noncefn: NonceFn,
|
|
|
|
noncedata: *const c_void)
|
|
|
|
-> c_int;
|
|
|
|
|
|
|
|
pub fn secp256k1_ecdsa_recover(cx: Context,
|
|
|
|
pk: *mut PublicKey,
|
|
|
|
sig: *const RecoverableSignature,
|
|
|
|
msg32: *const c_uchar)
|
2015-07-28 16:03:10 +00:00
|
|
|
-> c_int;
|
2014-08-24 23:13:08 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
// EC
|
2015-04-11 17:00:20 +00:00
|
|
|
pub fn secp256k1_ec_seckey_verify(cx: Context,
|
|
|
|
sk: *const c_uchar) -> c_int;
|
2014-08-28 16:16:53 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
pub fn secp256k1_ec_pubkey_create(cx: Context, pk: *mut PublicKey,
|
|
|
|
sk: *const c_uchar) -> c_int;
|
2014-08-31 21:04:14 +00:00
|
|
|
|
2015-04-06 05:13:38 +00:00
|
|
|
//TODO secp256k1_ec_privkey_export
|
|
|
|
//TODO secp256k1_ec_privkey_import
|
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
pub fn secp256k1_ec_privkey_tweak_add(cx: Context,
|
|
|
|
sk: *mut c_uchar,
|
2015-01-17 16:38:16 +00:00
|
|
|
tweak: *const c_uchar)
|
|
|
|
-> c_int;
|
2014-08-28 16:16:53 +00:00
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
pub fn secp256k1_ec_pubkey_tweak_add(cx: Context,
|
2015-07-28 16:03:10 +00:00
|
|
|
pk: *mut PublicKey,
|
2015-01-17 16:38:16 +00:00
|
|
|
tweak: *const c_uchar)
|
|
|
|
-> c_int;
|
2014-08-28 16:16:53 +00:00
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
pub fn secp256k1_ec_privkey_tweak_mul(cx: Context,
|
|
|
|
sk: *mut c_uchar,
|
2015-01-17 16:38:16 +00:00
|
|
|
tweak: *const c_uchar)
|
|
|
|
-> c_int;
|
2014-08-28 16:16:53 +00:00
|
|
|
|
2015-04-11 17:00:20 +00:00
|
|
|
pub fn secp256k1_ec_pubkey_tweak_mul(cx: Context,
|
2015-07-28 16:03:10 +00:00
|
|
|
pk: *mut PublicKey,
|
2015-01-17 16:38:16 +00:00
|
|
|
tweak: *const c_uchar)
|
|
|
|
-> c_int;
|
2015-05-03 23:22:30 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
pub fn secp256k1_ec_pubkey_combine(cx: Context,
|
|
|
|
out: *mut PublicKey,
|
2015-09-18 20:22:48 +00:00
|
|
|
ins: *const *const PublicKey,
|
|
|
|
n: c_int)
|
2015-05-03 23:22:30 +00:00
|
|
|
-> c_int;
|
2015-09-18 20:22:48 +00:00
|
|
|
|
|
|
|
pub fn secp256k1_ecdh(cx: Context,
|
|
|
|
out: *mut SharedSecret,
|
|
|
|
point: *const PublicKey,
|
|
|
|
scalar: *const c_uchar)
|
|
|
|
-> c_int;
|
2014-08-09 20:27:08 +00:00
|
|
|
}
|
|
|
|
|