2019-10-21 12:15:19 +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/>.
|
|
|
|
//
|
|
|
|
|
2022-11-03 03:36:17 +00:00
|
|
|
/// Implement methods and traits for types that contain an inner array.
|
2019-10-21 12:15:19 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! impl_array_newtype {
|
|
|
|
($thing:ident, $ty:ty, $len:expr) => {
|
|
|
|
impl Copy for $thing {}
|
|
|
|
|
|
|
|
impl $thing {
|
2022-11-03 03:36:17 +00:00
|
|
|
/// Returns the length of the object as an array.
|
2022-06-28 03:07:08 +00:00
|
|
|
#[inline]
|
2019-10-21 12:15:19 +00:00
|
|
|
pub fn len(&self) -> usize { $len }
|
|
|
|
|
2022-11-03 03:36:17 +00:00
|
|
|
/// Returns whether the object as an array is empty.
|
2022-06-28 03:07:08 +00:00
|
|
|
#[inline]
|
2019-10-21 12:15:19 +00:00
|
|
|
pub fn is_empty(&self) -> bool { false }
|
|
|
|
}
|
|
|
|
|
2020-12-22 00:47:22 +00:00
|
|
|
impl AsRef<[$ty; $len]> for $thing {
|
|
|
|
#[inline]
|
|
|
|
/// Gets a reference to the underlying array
|
|
|
|
fn as_ref(&self) -> &[$ty; $len] {
|
|
|
|
let &$thing(ref dat) = self;
|
|
|
|
dat
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-21 12:15:19 +00:00
|
|
|
impl PartialEq for $thing {
|
|
|
|
#[inline]
|
|
|
|
fn eq(&self, other: &$thing) -> bool {
|
|
|
|
&self[..] == &other[..]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for $thing {}
|
|
|
|
|
2021-11-04 14:48:08 +00:00
|
|
|
impl ::core::hash::Hash for $thing {
|
|
|
|
fn hash<H: ::core::hash::Hasher>(&self, state: &mut H) {
|
|
|
|
(&self[..]).hash(state)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-21 12:15:19 +00:00
|
|
|
impl PartialOrd for $thing {
|
|
|
|
#[inline]
|
2021-09-14 13:31:22 +00:00
|
|
|
fn partial_cmp(&self, other: &$thing) -> Option<core::cmp::Ordering> {
|
2019-10-21 12:15:19 +00:00
|
|
|
self[..].partial_cmp(&other[..])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ord for $thing {
|
|
|
|
#[inline]
|
2021-09-14 13:31:22 +00:00
|
|
|
fn cmp(&self, other: &$thing) -> core::cmp::Ordering {
|
2019-10-21 12:15:19 +00:00
|
|
|
self[..].cmp(&other[..])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for $thing {
|
|
|
|
#[inline]
|
|
|
|
fn clone(&self) -> $thing {
|
|
|
|
let &$thing(ref dat) = self;
|
|
|
|
$thing(dat.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-03 03:31:08 +00:00
|
|
|
impl<I> core::ops::Index<I> for $thing
|
|
|
|
where
|
|
|
|
[$ty]: core::ops::Index<I>,
|
|
|
|
{
|
|
|
|
type Output = <[$ty] as core::ops::Index<I>>::Output;
|
2019-10-21 12:15:19 +00:00
|
|
|
|
|
|
|
#[inline]
|
2022-11-03 03:31:08 +00:00
|
|
|
fn index(&self, index: I) -> &Self::Output { &self.0[index] }
|
2019-10-21 12:15:19 +00:00
|
|
|
}
|
|
|
|
|
2020-08-27 19:51:36 +00:00
|
|
|
impl $crate::CPtr for $thing {
|
2019-10-21 12:15:19 +00:00
|
|
|
type Target = $ty;
|
2022-11-16 23:52:36 +00:00
|
|
|
|
2019-10-21 12:15:19 +00:00
|
|
|
fn as_c_ptr(&self) -> *const Self::Target {
|
2022-11-16 23:52:36 +00:00
|
|
|
let &$thing(ref dat) = self;
|
|
|
|
dat.as_ptr()
|
2019-10-21 12:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn as_mut_c_ptr(&mut self) -> *mut Self::Target {
|
2022-11-16 23:52:36 +00:00
|
|
|
let &mut $thing(ref mut dat) = self;
|
|
|
|
dat.as_mut_ptr()
|
2019-10-21 12:15:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 22:02:44 +00:00
|
|
|
#[macro_export]
|
2019-10-21 12:15:19 +00:00
|
|
|
macro_rules! impl_raw_debug {
|
|
|
|
($thing:ident) => {
|
2021-09-14 13:31:22 +00:00
|
|
|
impl core::fmt::Debug for $thing {
|
|
|
|
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
|
2019-10-21 12:15:19 +00:00
|
|
|
for i in self[..].iter().cloned() {
|
|
|
|
write!(f, "{:02x}", i)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|