2014-08-27 17:19:10 +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/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
// This is a macro that routinely comes in handy
|
2015-01-17 16:13:45 +00:00
|
|
|
macro_rules! impl_array_newtype {
|
2014-08-27 17:19:10 +00:00
|
|
|
($thing:ident, $ty:ty, $len:expr) => {
|
2015-01-17 16:13:45 +00:00
|
|
|
impl Copy for $thing {}
|
|
|
|
|
2014-08-27 17:19:10 +00:00
|
|
|
impl $thing {
|
|
|
|
#[inline]
|
|
|
|
/// Converts the object to a raw pointer for FFI interfacing
|
|
|
|
pub fn as_ptr(&self) -> *const $ty {
|
|
|
|
let &$thing(ref dat) = self;
|
|
|
|
dat.as_ptr()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
/// Converts the object to a mutable raw pointer for FFI interfacing
|
|
|
|
pub fn as_mut_ptr(&mut self) -> *mut $ty {
|
2015-01-17 16:13:45 +00:00
|
|
|
let &mut $thing(ref mut dat) = self;
|
2014-08-27 17:19:10 +00:00
|
|
|
dat.as_mut_ptr()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
/// Returns the length of the object as an array
|
2015-01-17 16:13:45 +00:00
|
|
|
pub fn len(&self) -> usize { $len }
|
2015-10-28 12:46:46 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
/// Returns whether the object as an array is empty
|
|
|
|
pub fn is_empty(&self) -> bool { false }
|
2014-08-27 17:19:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for $thing {
|
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &$thing) -> bool {
|
2015-03-26 01:36:57 +00:00
|
|
|
&self[..] == &other[..]
|
2014-08-27 17:19:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for $thing {}
|
|
|
|
|
2018-05-22 09:33:11 +00:00
|
|
|
impl PartialOrd for $thing {
|
|
|
|
#[inline]
|
2019-02-18 12:30:39 +00:00
|
|
|
fn partial_cmp(&self, other: &$thing) -> Option<::core::cmp::Ordering> {
|
2018-05-22 09:33:11 +00:00
|
|
|
self[..].partial_cmp(&other[..])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ord for $thing {
|
|
|
|
#[inline]
|
2019-02-18 12:30:39 +00:00
|
|
|
fn cmp(&self, other: &$thing) -> ::core::cmp::Ordering {
|
2018-05-22 09:33:11 +00:00
|
|
|
self[..].cmp(&other[..])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-27 17:19:10 +00:00
|
|
|
impl Clone for $thing {
|
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> $thing {
|
|
|
|
unsafe {
|
2019-02-18 12:30:39 +00:00
|
|
|
use core::intrinsics::copy_nonoverlapping;
|
|
|
|
use core::mem;
|
2014-08-27 17:19:10 +00:00
|
|
|
let mut ret: $thing = mem::uninitialized();
|
2015-04-04 17:20:38 +00:00
|
|
|
copy_nonoverlapping(self.as_ptr(),
|
|
|
|
ret.as_mut_ptr(),
|
2018-02-14 16:25:45 +00:00
|
|
|
$len);
|
2014-08-27 17:19:10 +00:00
|
|
|
ret
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-05 01:09:18 +00:00
|
|
|
|
2019-02-18 12:30:39 +00:00
|
|
|
impl ::core::ops::Index<usize> for $thing {
|
2015-03-26 01:36:57 +00:00
|
|
|
type Output = $ty;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn index(&self, index: usize) -> &$ty {
|
|
|
|
let &$thing(ref dat) = self;
|
|
|
|
&dat[index]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-18 12:30:39 +00:00
|
|
|
impl ::core::ops::Index<::core::ops::Range<usize>> for $thing {
|
2015-03-26 01:36:57 +00:00
|
|
|
type Output = [$ty];
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-18 12:30:39 +00:00
|
|
|
fn index(&self, index: ::core::ops::Range<usize>) -> &[$ty] {
|
2015-03-26 01:36:57 +00:00
|
|
|
let &$thing(ref dat) = self;
|
2015-04-05 17:16:56 +00:00
|
|
|
&dat[index]
|
2015-03-26 01:36:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-18 12:30:39 +00:00
|
|
|
impl ::core::ops::Index<::core::ops::RangeTo<usize>> for $thing {
|
2015-03-26 01:36:57 +00:00
|
|
|
type Output = [$ty];
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-18 12:30:39 +00:00
|
|
|
fn index(&self, index: ::core::ops::RangeTo<usize>) -> &[$ty] {
|
2015-03-26 01:36:57 +00:00
|
|
|
let &$thing(ref dat) = self;
|
2015-04-05 17:16:56 +00:00
|
|
|
&dat[index]
|
2015-03-26 01:36:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-18 12:30:39 +00:00
|
|
|
impl ::core::ops::Index<::core::ops::RangeFrom<usize>> for $thing {
|
2015-03-26 01:36:57 +00:00
|
|
|
type Output = [$ty];
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-18 12:30:39 +00:00
|
|
|
fn index(&self, index: ::core::ops::RangeFrom<usize>) -> &[$ty] {
|
2015-03-26 01:36:57 +00:00
|
|
|
let &$thing(ref dat) = self;
|
2015-04-05 17:16:56 +00:00
|
|
|
&dat[index]
|
2015-03-26 01:36:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-18 12:30:39 +00:00
|
|
|
impl ::core::ops::Index<::core::ops::RangeFull> for $thing {
|
2015-03-26 01:36:57 +00:00
|
|
|
type Output = [$ty];
|
|
|
|
|
|
|
|
#[inline]
|
2019-02-18 12:30:39 +00:00
|
|
|
fn index(&self, _: ::core::ops::RangeFull) -> &[$ty] {
|
2015-03-26 01:36:57 +00:00
|
|
|
let &$thing(ref dat) = self;
|
|
|
|
&dat[..]
|
|
|
|
}
|
|
|
|
}
|
2014-08-27 17:19:10 +00:00
|
|
|
}
|
2015-01-17 16:13:45 +00:00
|
|
|
}
|
2014-08-27 17:19:10 +00:00
|
|
|
|
2015-07-28 16:03:10 +00:00
|
|
|
macro_rules! impl_pretty_debug {
|
|
|
|
($thing:ident) => {
|
2019-02-18 12:30:39 +00:00
|
|
|
impl ::core::fmt::Debug for $thing {
|
|
|
|
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
|
2015-07-28 16:03:10 +00:00
|
|
|
try!(write!(f, "{}(", stringify!($thing)));
|
|
|
|
for i in self[..].iter().cloned() {
|
|
|
|
try!(write!(f, "{:02x}", i));
|
|
|
|
}
|
|
|
|
write!(f, ")")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_raw_debug {
|
|
|
|
($thing:ident) => {
|
2019-02-18 12:30:39 +00:00
|
|
|
impl ::core::fmt::Debug for $thing {
|
|
|
|
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
|
2015-07-28 16:03:10 +00:00
|
|
|
for i in self[..].iter().cloned() {
|
|
|
|
try!(write!(f, "{:02x}", i));
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|