1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright 2018-2019 Cryptape Technologies LLC.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

macro_rules! convert_between {
    ($uint:ident, $hash:ident, $bytes_size:expr) => {
        impl<'a> From<&'a numext_fixed_uint::$uint> for $hash {
            #[inline]
            fn from(u: &numext_fixed_uint::$uint) -> Self {
                let mut ret = [0u8; $bytes_size];
                u.into_big_endian(&mut ret).unwrap_or_else(|e| {
                    panic!(
                        "failed to convert from {} to {}: {}",
                        stringify!($uint),
                        stringify!($hash),
                        e
                    )
                });
                ret.into()
            }
        }
        impl From<numext_fixed_uint::$uint> for $hash {
            #[inline]
            fn from(u: numext_fixed_uint::$uint) -> Self {
                (&u).into()
            }
        }
        impl<'a> From<&'a $hash> for numext_fixed_uint::$uint {
            #[inline]
            fn from(h: &$hash) -> Self {
                numext_fixed_uint::$uint::from_big_endian(h.as_bytes()).unwrap_or_else(|e| {
                    panic!(
                        "failed to convert from {} to {}: {}",
                        stringify!($hash),
                        stringify!($uint),
                        e
                    )
                })
            }
        }
        impl From<$hash> for numext_fixed_uint::$uint {
            #[inline]
            fn from(h: $hash) -> Self {
                (&h).into()
            }
        }
    };
}