2019-07-04 21:38:03 +00:00
|
|
|
use core::marker::PhantomData;
|
2019-12-05 15:51:59 +00:00
|
|
|
use core::mem::ManuallyDrop;
|
2019-11-06 14:15:22 +00:00
|
|
|
use ptr;
|
2019-08-16 18:49:24 +00:00
|
|
|
use ffi::{self, CPtr};
|
2019-10-21 12:15:19 +00:00
|
|
|
use ffi::types::{c_uint, c_void};
|
2019-07-04 23:03:13 +00:00
|
|
|
use Error;
|
|
|
|
use Secp256k1;
|
2019-07-04 21:38:03 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "std")]
|
|
|
|
pub use self::std_only::*;
|
|
|
|
|
2020-07-04 19:19:03 +00:00
|
|
|
#[cfg(feature = "global-context")]
|
|
|
|
/// Module implementing a singleton pattern for a global `Secp256k1` context
|
|
|
|
pub mod global {
|
2020-11-10 23:36:07 +00:00
|
|
|
use rand;
|
2020-07-04 19:19:03 +00:00
|
|
|
use std::ops::Deref;
|
|
|
|
use std::sync::Once;
|
2020-08-27 19:51:36 +00:00
|
|
|
use {Secp256k1, All};
|
2020-07-04 19:19:03 +00:00
|
|
|
|
|
|
|
/// Proxy struct for global `SECP256K1` context
|
|
|
|
pub struct GlobalContext {
|
|
|
|
__private: (),
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A global, static context to avoid repeatedly creating contexts where one can't be passed
|
|
|
|
pub static SECP256K1: &GlobalContext = &GlobalContext { __private: () };
|
|
|
|
|
|
|
|
impl Deref for GlobalContext {
|
|
|
|
type Target = Secp256k1<All>;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
static ONCE: Once = Once::new();
|
|
|
|
static mut CONTEXT: Option<Secp256k1<All>> = None;
|
|
|
|
ONCE.call_once(|| unsafe {
|
2020-08-03 10:07:26 +00:00
|
|
|
let mut ctx = Secp256k1::new();
|
|
|
|
ctx.randomize(&mut rand::thread_rng());
|
|
|
|
CONTEXT = Some(ctx);
|
2020-07-04 19:19:03 +00:00
|
|
|
});
|
|
|
|
unsafe { CONTEXT.as_ref().unwrap() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-05 01:18:36 +00:00
|
|
|
/// A trait for all kinds of Context's that Lets you define the exact flags and a function to deallocate memory.
|
2019-11-27 15:36:06 +00:00
|
|
|
/// It shouldn't be possible to implement this for types outside this crate.
|
|
|
|
pub unsafe trait Context : private::Sealed {
|
2019-07-04 21:38:03 +00:00
|
|
|
/// Flags for the ffi.
|
|
|
|
const FLAGS: c_uint;
|
|
|
|
/// A constant description of the context.
|
|
|
|
const DESCRIPTION: &'static str;
|
|
|
|
/// A function to deallocate the memory when the context is dropped.
|
2019-11-27 15:42:01 +00:00
|
|
|
unsafe fn deallocate(ptr: *mut [u8]);
|
2019-07-04 21:38:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Marker trait for indicating that an instance of `Secp256k1` can be used for signing.
|
|
|
|
pub trait Signing: Context {}
|
|
|
|
|
|
|
|
/// Marker trait for indicating that an instance of `Secp256k1` can be used for verification.
|
|
|
|
pub trait Verification: Context {}
|
|
|
|
|
2019-07-04 21:39:37 +00:00
|
|
|
/// Represents the set of capabilities needed for signing with a user preallocated memory.
|
|
|
|
pub struct SignOnlyPreallocated<'buf> {
|
|
|
|
phantom: PhantomData<&'buf ()>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents the set of capabilities needed for verification with a user preallocated memory.
|
|
|
|
pub struct VerifyOnlyPreallocated<'buf> {
|
|
|
|
phantom: PhantomData<&'buf ()>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents the set of all capabilities with a user preallocated memory.
|
|
|
|
pub struct AllPreallocated<'buf> {
|
|
|
|
phantom: PhantomData<&'buf ()>,
|
|
|
|
}
|
2019-07-04 21:38:03 +00:00
|
|
|
|
2019-11-27 15:36:06 +00:00
|
|
|
mod private {
|
|
|
|
use super::*;
|
|
|
|
// A trick to prevent users from implementing a trait.
|
|
|
|
// on one hand this trait is public, on the other it's in a private module
|
|
|
|
// so it's not visible to anyone besides it's parent (the context module)
|
|
|
|
pub trait Sealed {}
|
|
|
|
|
|
|
|
impl<'buf> Sealed for AllPreallocated<'buf> {}
|
|
|
|
impl<'buf> Sealed for VerifyOnlyPreallocated<'buf> {}
|
|
|
|
impl<'buf> Sealed for SignOnlyPreallocated<'buf> {}
|
|
|
|
}
|
|
|
|
|
2019-07-04 21:38:03 +00:00
|
|
|
#[cfg(feature = "std")]
|
|
|
|
mod std_only {
|
2019-11-27 15:36:06 +00:00
|
|
|
impl private::Sealed for SignOnly {}
|
|
|
|
impl private::Sealed for All {}
|
|
|
|
impl private::Sealed for VerifyOnly {}
|
|
|
|
|
2019-07-04 21:38:03 +00:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
/// Represents the set of capabilities needed for signing.
|
|
|
|
pub enum SignOnly {}
|
|
|
|
|
|
|
|
/// Represents the set of capabilities needed for verification.
|
|
|
|
pub enum VerifyOnly {}
|
|
|
|
|
|
|
|
/// Represents the set of all capabilities.
|
|
|
|
pub enum All {}
|
|
|
|
|
|
|
|
impl Signing for SignOnly {}
|
|
|
|
impl Signing for All {}
|
|
|
|
|
|
|
|
impl Verification for VerifyOnly {}
|
|
|
|
impl Verification for All {}
|
|
|
|
|
|
|
|
unsafe impl Context for SignOnly {
|
|
|
|
const FLAGS: c_uint = ffi::SECP256K1_START_SIGN;
|
|
|
|
const DESCRIPTION: &'static str = "signing only";
|
|
|
|
|
2019-11-27 15:42:01 +00:00
|
|
|
unsafe fn deallocate(ptr: *mut [u8]) {
|
|
|
|
let _ = Box::from_raw(ptr);
|
2019-07-04 21:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Context for VerifyOnly {
|
|
|
|
const FLAGS: c_uint = ffi::SECP256K1_START_VERIFY;
|
|
|
|
const DESCRIPTION: &'static str = "verification only";
|
|
|
|
|
2019-11-27 15:42:01 +00:00
|
|
|
unsafe fn deallocate(ptr: *mut [u8]) {
|
|
|
|
let _ = Box::from_raw(ptr);
|
2019-07-04 21:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl Context for All {
|
|
|
|
const FLAGS: c_uint = VerifyOnly::FLAGS | SignOnly::FLAGS;
|
|
|
|
const DESCRIPTION: &'static str = "all capabilities";
|
|
|
|
|
2019-11-27 15:42:01 +00:00
|
|
|
unsafe fn deallocate(ptr: *mut [u8]) {
|
|
|
|
let _ = Box::from_raw(ptr);
|
2019-07-04 21:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<C: Context> Secp256k1<C> {
|
2019-07-05 01:18:36 +00:00
|
|
|
/// Lets you create a context in a generic manner(sign/verify/all)
|
|
|
|
pub fn gen_new() -> Secp256k1<C> {
|
2020-04-29 19:15:40 +00:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
ffi::types::sanity_checks_for_wasm();
|
|
|
|
|
2019-07-04 22:09:55 +00:00
|
|
|
let buf = vec![0u8; Self::preallocate_size_gen()].into_boxed_slice();
|
2019-07-04 21:38:03 +00:00
|
|
|
let ptr = Box::into_raw(buf);
|
|
|
|
Secp256k1 {
|
|
|
|
ctx: unsafe { ffi::secp256k1_context_preallocated_create(ptr as *mut c_void, C::FLAGS) },
|
|
|
|
phantom: PhantomData,
|
|
|
|
buf: ptr,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Secp256k1<All> {
|
|
|
|
/// Creates a new Secp256k1 context with all capabilities
|
|
|
|
pub fn new() -> Secp256k1<All> {
|
|
|
|
Secp256k1::gen_new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Secp256k1<SignOnly> {
|
|
|
|
/// Creates a new Secp256k1 context that can only be used for signing
|
|
|
|
pub fn signing_only() -> Secp256k1<SignOnly> {
|
|
|
|
Secp256k1::gen_new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Secp256k1<VerifyOnly> {
|
|
|
|
/// Creates a new Secp256k1 context that can only be used for verification
|
|
|
|
pub fn verification_only() -> Secp256k1<VerifyOnly> {
|
|
|
|
Secp256k1::gen_new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Secp256k1<All> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<C: Context> Clone for Secp256k1<C> {
|
|
|
|
fn clone(&self) -> Secp256k1<C> {
|
2019-07-04 22:46:51 +00:00
|
|
|
let clone_size = unsafe {ffi::secp256k1_context_preallocated_clone_size(self.ctx)};
|
|
|
|
let ptr_buf = Box::into_raw(vec![0u8; clone_size].into_boxed_slice());
|
2019-07-04 21:38:03 +00:00
|
|
|
Secp256k1 {
|
2019-07-04 22:46:51 +00:00
|
|
|
ctx: unsafe { ffi::secp256k1_context_preallocated_clone(self.ctx, ptr_buf as *mut c_void) },
|
2019-07-04 21:38:03 +00:00
|
|
|
phantom: PhantomData,
|
2019-07-04 22:46:51 +00:00
|
|
|
buf: ptr_buf,
|
2019-07-04 21:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-04 21:39:37 +00:00
|
|
|
|
|
|
|
impl<'buf> Signing for SignOnlyPreallocated<'buf> {}
|
|
|
|
impl<'buf> Signing for AllPreallocated<'buf> {}
|
|
|
|
|
|
|
|
impl<'buf> Verification for VerifyOnlyPreallocated<'buf> {}
|
|
|
|
impl<'buf> Verification for AllPreallocated<'buf> {}
|
|
|
|
|
|
|
|
unsafe impl<'buf> Context for SignOnlyPreallocated<'buf> {
|
|
|
|
const FLAGS: c_uint = ffi::SECP256K1_START_SIGN;
|
|
|
|
const DESCRIPTION: &'static str = "signing only";
|
|
|
|
|
2019-11-27 15:42:01 +00:00
|
|
|
unsafe fn deallocate(_ptr: *mut [u8]) {
|
2019-07-05 01:18:36 +00:00
|
|
|
// Allocated by the user
|
2019-07-04 21:39:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'buf> Context for VerifyOnlyPreallocated<'buf> {
|
|
|
|
const FLAGS: c_uint = ffi::SECP256K1_START_VERIFY;
|
|
|
|
const DESCRIPTION: &'static str = "verification only";
|
|
|
|
|
2019-11-27 15:42:01 +00:00
|
|
|
unsafe fn deallocate(_ptr: *mut [u8]) {
|
2019-07-05 01:18:36 +00:00
|
|
|
// Allocated by the user
|
2019-07-04 21:39:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'buf> Context for AllPreallocated<'buf> {
|
|
|
|
const FLAGS: c_uint = SignOnlyPreallocated::FLAGS | VerifyOnlyPreallocated::FLAGS;
|
|
|
|
const DESCRIPTION: &'static str = "all capabilities";
|
|
|
|
|
2019-11-27 15:42:01 +00:00
|
|
|
unsafe fn deallocate(_ptr: *mut [u8]) {
|
2019-07-05 01:18:36 +00:00
|
|
|
// Allocated by the user
|
2019-07-04 21:39:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'buf, C: Context + 'buf> Secp256k1<C> {
|
2019-07-05 01:18:36 +00:00
|
|
|
/// Lets you create a context with preallocated buffer in a generic manner(sign/verify/all)
|
|
|
|
pub fn preallocated_gen_new(buf: &'buf mut [u8]) -> Result<Secp256k1<C>, Error> {
|
2020-04-29 19:15:40 +00:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
ffi::types::sanity_checks_for_wasm();
|
|
|
|
|
2019-07-04 22:09:55 +00:00
|
|
|
if buf.len() < Self::preallocate_size_gen() {
|
2019-07-04 21:39:37 +00:00
|
|
|
return Err(Error::NotEnoughMemory);
|
|
|
|
}
|
|
|
|
Ok(Secp256k1 {
|
|
|
|
ctx: unsafe {
|
|
|
|
ffi::secp256k1_context_preallocated_create(
|
2019-08-16 18:49:24 +00:00
|
|
|
buf.as_mut_c_ptr() as *mut c_void,
|
2019-07-04 22:09:55 +00:00
|
|
|
C::FLAGS)
|
2019-07-04 21:39:37 +00:00
|
|
|
},
|
|
|
|
phantom: PhantomData,
|
|
|
|
buf: buf as *mut [u8],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'buf> Secp256k1<AllPreallocated<'buf>> {
|
|
|
|
/// Creates a new Secp256k1 context with all capabilities
|
|
|
|
pub fn preallocated_new(buf: &'buf mut [u8]) -> Result<Secp256k1<AllPreallocated<'buf>>, Error> {
|
|
|
|
Secp256k1::preallocated_gen_new(buf)
|
|
|
|
}
|
2019-07-04 22:09:55 +00:00
|
|
|
/// Uses the ffi `secp256k1_context_preallocated_size` to check the memory size needed for a context
|
|
|
|
pub fn preallocate_size() -> usize {
|
|
|
|
Self::preallocate_size_gen()
|
|
|
|
}
|
2019-11-06 14:15:22 +00:00
|
|
|
|
|
|
|
/// Create a context from a raw context.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// This is highly unsafe, due to the number of conditions that aren't checked.
|
|
|
|
/// * `raw_ctx` needs to be a valid Secp256k1 context pointer.
|
|
|
|
/// that was generated by *exactly* the same code/version of the libsecp256k1 used here.
|
|
|
|
/// * The capabilities (All/SignOnly/VerifyOnly) of the context *must* match the flags passed to libsecp256k1
|
|
|
|
/// when generating the context.
|
|
|
|
/// * The user must handle the freeing of the context(using the correct functions) by himself.
|
|
|
|
/// * Violating these may lead to Undefined Behavior.
|
|
|
|
///
|
2019-12-05 15:51:59 +00:00
|
|
|
pub unsafe fn from_raw_all(raw_ctx: *mut ffi::Context) -> ManuallyDrop<Secp256k1<AllPreallocated<'buf>>> {
|
|
|
|
ManuallyDrop::new(Secp256k1 {
|
2019-11-06 14:15:22 +00:00
|
|
|
ctx: raw_ctx,
|
|
|
|
phantom: PhantomData,
|
|
|
|
buf: ptr::null_mut::<[u8;0]>() as *mut [u8] ,
|
2019-12-05 15:51:59 +00:00
|
|
|
})
|
2019-11-06 14:15:22 +00:00
|
|
|
}
|
2019-07-04 21:39:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'buf> Secp256k1<SignOnlyPreallocated<'buf>> {
|
|
|
|
/// Creates a new Secp256k1 context that can only be used for signing
|
2019-07-04 22:09:55 +00:00
|
|
|
pub fn preallocated_signing_only(buf: &'buf mut [u8]) -> Result<Secp256k1<SignOnlyPreallocated<'buf>>, Error> {
|
2019-07-04 21:39:37 +00:00
|
|
|
Secp256k1::preallocated_gen_new(buf)
|
|
|
|
}
|
2019-07-04 22:09:55 +00:00
|
|
|
|
|
|
|
/// Uses the ffi `secp256k1_context_preallocated_size` to check the memory size needed for the context
|
|
|
|
#[inline]
|
|
|
|
pub fn preallocate_signing_size() -> usize {
|
|
|
|
Self::preallocate_size_gen()
|
|
|
|
}
|
2019-11-06 14:15:22 +00:00
|
|
|
|
|
|
|
/// Create a context from a raw context.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// This is highly unsafe, due to the number of conditions that aren't checked.
|
|
|
|
/// * `raw_ctx` needs to be a valid Secp256k1 context pointer.
|
|
|
|
/// that was generated by *exactly* the same code/version of the libsecp256k1 used here.
|
|
|
|
/// * The capabilities (All/SignOnly/VerifyOnly) of the context *must* match the flags passed to libsecp256k1
|
|
|
|
/// when generating the context.
|
|
|
|
/// * The user must handle the freeing of the context(using the correct functions) by himself.
|
|
|
|
/// * This list *is not* exhaustive, and any violation may lead to Undefined Behavior.,
|
|
|
|
///
|
2019-12-05 15:51:59 +00:00
|
|
|
pub unsafe fn from_raw_signining_only(raw_ctx: *mut ffi::Context) -> ManuallyDrop<Secp256k1<SignOnlyPreallocated<'buf>>> {
|
|
|
|
ManuallyDrop::new(Secp256k1 {
|
2019-11-06 14:15:22 +00:00
|
|
|
ctx: raw_ctx,
|
|
|
|
phantom: PhantomData,
|
|
|
|
buf: ptr::null_mut::<[u8;0]>() as *mut [u8] ,
|
2019-12-05 15:51:59 +00:00
|
|
|
})
|
2019-11-06 14:15:22 +00:00
|
|
|
}
|
2019-07-04 21:39:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'buf> Secp256k1<VerifyOnlyPreallocated<'buf>> {
|
|
|
|
/// Creates a new Secp256k1 context that can only be used for verification
|
2019-07-04 22:09:55 +00:00
|
|
|
pub fn preallocated_verification_only(buf: &'buf mut [u8]) -> Result<Secp256k1<VerifyOnlyPreallocated<'buf>>, Error> {
|
2019-07-04 21:39:37 +00:00
|
|
|
Secp256k1::preallocated_gen_new(buf)
|
|
|
|
}
|
2019-07-04 22:09:55 +00:00
|
|
|
|
|
|
|
/// Uses the ffi `secp256k1_context_preallocated_size` to check the memory size needed for the context
|
|
|
|
#[inline]
|
|
|
|
pub fn preallocate_verification_size() -> usize {
|
|
|
|
Self::preallocate_size_gen()
|
|
|
|
}
|
2019-11-06 14:15:22 +00:00
|
|
|
|
|
|
|
/// Create a context from a raw context.
|
|
|
|
///
|
|
|
|
/// # Safety
|
|
|
|
/// This is highly unsafe, due to the number of conditions that aren't checked.
|
|
|
|
/// * `raw_ctx` needs to be a valid Secp256k1 context pointer.
|
|
|
|
/// that was generated by *exactly* the same code/version of the libsecp256k1 used here.
|
|
|
|
/// * The capabilities (All/SignOnly/VerifyOnly) of the context *must* match the flags passed to libsecp256k1
|
|
|
|
/// when generating the context.
|
|
|
|
/// * The user must handle the freeing of the context(using the correct functions) by himself.
|
|
|
|
/// * This list *is not* exhaustive, and any violation may lead to Undefined Behavior.,
|
|
|
|
///
|
2019-12-05 15:51:59 +00:00
|
|
|
pub unsafe fn from_raw_verification_only(raw_ctx: *mut ffi::Context) -> ManuallyDrop<Secp256k1<VerifyOnlyPreallocated<'buf>>> {
|
|
|
|
ManuallyDrop::new(Secp256k1 {
|
2019-11-06 14:15:22 +00:00
|
|
|
ctx: raw_ctx,
|
|
|
|
phantom: PhantomData,
|
|
|
|
buf: ptr::null_mut::<[u8;0]>() as *mut [u8] ,
|
2019-12-05 15:51:59 +00:00
|
|
|
})
|
2019-11-06 14:15:22 +00:00
|
|
|
}
|
2020-11-10 23:36:07 +00:00
|
|
|
}
|