2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
|
|
|
|
//! Generates Keccak-flavoured trie roots.
|
|
|
|
|
|
|
|
extern crate ethereum_types;
|
|
|
|
extern crate keccak_hasher;
|
|
|
|
extern crate triehash;
|
|
|
|
|
|
|
|
use ethereum_types::H256;
|
|
|
|
use keccak_hasher::KeccakHasher;
|
|
|
|
|
|
|
|
/// Generates a trie root hash for a vector of key-value tuples
|
|
|
|
pub fn trie_root<I, K, V>(input: I) -> H256
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = (K, V)>,
|
|
|
|
K: AsRef<[u8]> + Ord,
|
|
|
|
V: AsRef<[u8]>,
|
|
|
|
{
|
|
|
|
triehash::trie_root::<KeccakHasher, _, _, _>(input)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generates a key-hashed (secure) trie root hash for a vector of key-value tuples.
|
|
|
|
pub fn sec_trie_root<I, K, V>(input: I) -> H256
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = (K, V)>,
|
|
|
|
K: AsRef<[u8]>,
|
|
|
|
V: AsRef<[u8]>,
|
|
|
|
{
|
|
|
|
triehash::sec_trie_root::<KeccakHasher, _, _, _>(input)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generates a trie root hash for a vector of values
|
|
|
|
pub fn ordered_trie_root<I, V>(input: I) -> H256
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = V>,
|
|
|
|
V: AsRef<[u8]>,
|
|
|
|
{
|
2018-10-09 22:07:25 +02:00
|
|
|
triehash::ordered_trie_root::<KeccakHasher, I>(input)
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2019-06-03 15:36:21 +02:00
|
|
|
use super::{trie_root, sec_trie_root, ordered_trie_root, H256};
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
use triehash;
|
|
|
|
use keccak_hasher::KeccakHasher;
|
2019-06-03 15:36:21 +02:00
|
|
|
use std::str::FromStr;
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn simple_test() {
|
|
|
|
assert_eq!(trie_root(vec![
|
|
|
|
(b"A", b"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" as &[u8])
|
2019-06-03 15:36:21 +02:00
|
|
|
]), H256::from_str("d23786fb4a010da3ce639d66d5e904a11dbc02746d1ce25029e53290cabf28ab").unwrap());
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn proxy_works() {
|
|
|
|
let input = vec![(b"A", b"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" as &[u8])];
|
|
|
|
assert_eq!(
|
|
|
|
trie_root(input.clone()),
|
|
|
|
triehash::trie_root::<KeccakHasher, _, _, _>(input.clone())
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
sec_trie_root(input.clone()),
|
|
|
|
triehash::sec_trie_root::<KeccakHasher, _, _, _>(input.clone())
|
|
|
|
);
|
|
|
|
|
|
|
|
let data = &["cake", "pie", "candy"];
|
|
|
|
assert_eq!(
|
|
|
|
ordered_trie_root(data),
|
2018-10-09 22:07:25 +02:00
|
|
|
triehash::ordered_trie_root::<KeccakHasher, _>(data)
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
);
|
|
|
|
}
|
2018-10-09 22:07:25 +02:00
|
|
|
}
|