102 lines
2.9 KiB
Rust
102 lines
2.9 KiB
Rust
//! Various utilities for manipulating Ethereum related data.
|
|
|
|
use ethabi::ethereum_types::H256;
|
|
use tiny_keccak::{Hasher, Keccak};
|
|
|
|
/// Hash a message according to [EIP-191] (version `0x01`).
|
|
///
|
|
/// The final message is a UTF-8 string, encoded as follows:
|
|
/// `"\x19Ethereum Signed Message:\n" + message.length + message`
|
|
///
|
|
/// This message is then hashed using [Keccak-256](keccak256).
|
|
///
|
|
/// [EIP-191]: https://eips.ethereum.org/EIPS/eip-191
|
|
pub fn hash_message<T: AsRef<[u8]>>(message: T) -> H256 {
|
|
const PREFIX: &str = "\x19Ethereum Signed Message:\n";
|
|
|
|
let message = message.as_ref();
|
|
let len = message.len();
|
|
let len_string = len.to_string();
|
|
|
|
let mut eth_message = Vec::with_capacity(PREFIX.len() + len_string.len() + len);
|
|
eth_message.extend_from_slice(PREFIX.as_bytes());
|
|
eth_message.extend_from_slice(len_string.as_bytes());
|
|
eth_message.extend_from_slice(message);
|
|
|
|
H256(keccak256(ð_message))
|
|
}
|
|
|
|
/// Compute the Keccak-256 hash of input bytes.
|
|
///
|
|
/// Note that strings are interpreted as UTF-8 bytes,
|
|
// TODO: Add Solidity Keccak256 packing support
|
|
pub fn keccak256<T: AsRef<[u8]>>(bytes: T) -> [u8; 32] {
|
|
let mut output = [0u8; 32];
|
|
|
|
let mut hasher = Keccak::v256();
|
|
hasher.update(bytes.as_ref());
|
|
hasher.finalize(&mut output);
|
|
|
|
output
|
|
}
|
|
|
|
/// Calculate the function selector as per the contract ABI specification. This
|
|
/// is defined as the first 4 bytes of the Keccak256 hash of the function
|
|
/// signature.
|
|
pub fn id<S: AsRef<str>>(signature: S) -> [u8; 4] {
|
|
let mut output = [0u8; 4];
|
|
|
|
let mut hasher = Keccak::v256();
|
|
hasher.update(signature.as_ref().as_bytes());
|
|
hasher.finalize(&mut output);
|
|
|
|
output
|
|
}
|
|
|
|
/// Serialize a type.
|
|
///
|
|
/// # Panics
|
|
///
|
|
/// If the type returns an error during serialization.
|
|
pub fn serialize<T: serde::Serialize>(t: &T) -> serde_json::Value {
|
|
serde_json::to_value(t).expect("Failed to serialize value")
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
// from https://emn178.github.io/online-tools/keccak_256.html
|
|
fn test_keccak256() {
|
|
assert_eq!(
|
|
hex::encode(keccak256(b"hello")),
|
|
"1c8aff950685c2ed4bc3174f3472287b56d9517b9c948127319a09a7a36deac8"
|
|
);
|
|
}
|
|
|
|
// test vector taken from:
|
|
// https://web3js.readthedocs.io/en/v1.2.2/web3-eth-accounts.html#hashmessage
|
|
#[test]
|
|
fn test_hash_message() {
|
|
let hash = hash_message("Hello World");
|
|
|
|
assert_eq!(
|
|
hash,
|
|
"a1de988600a42c4b4ab089b619297c17d53cffae5d5120d82d8a92d0bb3b78f2".parse().unwrap()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn simple_function_signature() {
|
|
// test vector retrieved from
|
|
// https://web3js.readthedocs.io/en/v1.2.4/web3-eth-abi.html#encodefunctionsignature
|
|
assert_eq!(id("myMethod(uint256,string)"), [0x24, 0xee, 0x00, 0x97],);
|
|
}
|
|
|
|
#[test]
|
|
fn revert_function_signature() {
|
|
assert_eq!(id("Error(string)"), [0x08, 0xc3, 0x79, 0xa0]);
|
|
}
|
|
}
|