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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
use crate::private_key::ETHEREUM_SALT;
use crate::Error;
use num256::Uint256;
use serde::{
de::{Deserialize, Deserializer},
ser::Serializer,
};
use sha3::{Digest, Keccak256};
use std::str;
pub fn get_ethereum_msg_hash(data: &[u8]) -> Vec<u8> {
let digest = Keccak256::digest(data);
let salt_string = ETHEREUM_SALT.to_string();
let salt_bytes = salt_string.as_bytes();
let digest = Keccak256::digest(&[salt_bytes, &digest].concat());
digest.to_vec()
}
pub fn hex_str_to_bytes(s: &str) -> Result<Vec<u8>, Error> {
let s = match s.strip_prefix("0x") {
Some(s) => s,
None => s,
};
let bytes = s
.as_bytes()
.chunks(2)
.map::<Result<u8, Error>, _>(|ch| {
let str = str::from_utf8(ch)?;
let byte = u8::from_str_radix(str, 16)?;
Ok(byte)
})
.collect::<Result<Vec<_>, _>>()?;
Ok(bytes)
}
pub fn debug_print_data(input: &[u8]) -> String {
let mut out = String::new();
let count = input.len() / 32;
out += "data hex dump\n";
for i in 0..count {
out += &format!(
"0x{}\n",
bytes_to_hex_str(&input[(i * 32)..((i * 32) + 32)])
)
}
out += "end hex dump\n";
out
}
pub fn display_uint256_as_address(input: Uint256) -> String {
format!("{:#066x}", input)
}
pub fn big_endian_uint256_serialize<S>(x: &Uint256, s: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
if x == &0u32.into() {
s.serialize_bytes(&[])
} else {
let bytes = x.to_bytes_be();
s.serialize_bytes(&bytes)
}
}
pub fn big_endian_uint256_deserialize<'de, D>(d: D) -> Result<Uint256, D::Error>
where
D: Deserializer<'de>,
{
Ok(Uint256::from_bytes_be(&Vec::<u8>::deserialize(d)?))
}
#[test]
fn decode_bytes() {
assert_eq!(
hex_str_to_bytes(&"deadbeef".to_owned()).expect("Unable to decode"),
[222, 173, 190, 239]
);
}
#[test]
fn decode_odd_amount_of_bytes() {
assert_eq!(hex_str_to_bytes(&"f".to_owned()).unwrap(), vec![15]);
}
#[test]
fn bytes_raises_decode_error() {
let e = hex_str_to_bytes(&"\u{012345}deadbeef".to_owned()).unwrap_err();
match e {
Error::InvalidUtf8(_) => {}
_ => panic!(),
};
}
#[test]
fn bytes_raises_parse_error() {
let e = hex_str_to_bytes(&"Lorem ipsum".to_owned()).unwrap_err();
match e {
Error::InvalidHex(_) => {}
_ => panic!(),
}
}
#[test]
fn parse_prefixed_empty() {
assert_eq!(
hex_str_to_bytes(&"0x".to_owned()).unwrap(),
Vec::<u8>::new()
);
}
#[test]
fn parse_prefixed_non_empty() {
assert_eq!(
hex_str_to_bytes(&"0xdeadbeef".to_owned()).unwrap(),
vec![0xde, 0xad, 0xbe, 0xef]
);
}
pub fn bytes_to_hex_str(bytes: &[u8]) -> String {
bytes
.iter()
.map(|b| format!("{:0>2x?}", b))
.fold(String::new(), |acc, x| acc + &x)
}
#[test]
fn encode_bytes() {
assert_eq!(bytes_to_hex_str(&[0xf]), "0f".to_owned());
assert_eq!(bytes_to_hex_str(&[0xff]), "ff".to_owned());
assert_eq!(
bytes_to_hex_str(&[0xde, 0xad, 0xbe, 0xef]),
"deadbeef".to_owned()
);
}
pub fn zpad(bytes: &[u8], len: usize) -> Vec<u8> {
if bytes.len() >= len {
return bytes.to_vec();
}
let mut pad = vec![0u8; len - bytes.len()];
pad.extend(bytes);
pad
}
#[test]
fn verify_zpad() {
assert_eq!(zpad(&[1, 2, 3, 4], 8), [0, 0, 0, 0, 1, 2, 3, 4]);
}
#[test]
fn verify_zpad_exact() {
assert_eq!(zpad(&[1, 2, 3, 4], 4), [1, 2, 3, 4]);
}
#[test]
fn verify_zpad_less_than_size() {
assert_eq!(zpad(&[1, 2, 3, 4], 2), [1, 2, 3, 4]);
}