mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-12 02:55:41 +00:00
60e5011c72
* Adding first rough ouline of the repository structure * Remove old CI stuff * add title * formatting fixes * move node-exits job's script to scripts dir * Move docs into subdir * move to bin * move maintainence scripts, configs and helpers into its own dir * add .local to ignore * move core->client * start up 'test' area * move test client * move test runtime * make test move compile * Add dependencies rule enforcement. * Fix indexing. * Update docs to reflect latest changes * Moving /srml->/paint * update docs * move client/sr-* -> primitives/ * clean old readme * remove old broken code in rhd * update lock * Step 1. * starting to untangle client * Fix after merge. * start splitting out client interfaces * move children and blockchain interfaces * Move trie and state-machine to primitives. * Fix WASM builds. * fixing broken imports * more interface moves * move backend and light to interfaces * move CallExecutor * move cli off client * moving around more interfaces * re-add consensus crates into the mix * fix subkey path * relieve client from executor * starting to pull out client from grandpa * move is_decendent_of out of client * grandpa still depends on client directly * lemme tests pass * rename srml->paint * Make it compile. * rename interfaces->client-api * Move keyring to primitives. * fixup libp2p dep * fix broken use * allow dependency enforcement to fail * move fork-tree * Moving wasm-builder * make env * move build-script-utils * fixup broken crate depdencies and names * fix imports for authority discovery * fix typo * update cargo.lock * fixing imports * Fix paths and add missing crates * re-add missing crates
115 lines
2.8 KiB
Rust
115 lines
2.8 KiB
Rust
// Copyright 2017-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// 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.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// 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
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Hash utilities.
|
|
|
|
use codec::Codec;
|
|
use rstd::prelude::Vec;
|
|
use runtime_io::hashing::{blake2_128, blake2_256, twox_64, twox_128, twox_256};
|
|
|
|
// This trait must be kept coherent with paint-support-procedural HasherKind usage
|
|
pub trait Hashable: Sized {
|
|
fn blake2_128(&self) -> [u8; 16];
|
|
fn blake2_256(&self) -> [u8; 32];
|
|
fn twox_128(&self) -> [u8; 16];
|
|
fn twox_256(&self) -> [u8; 32];
|
|
fn twox_64_concat(&self) -> Vec<u8>;
|
|
}
|
|
|
|
impl<T: Codec> Hashable for T {
|
|
fn blake2_128(&self) -> [u8; 16] {
|
|
self.using_encoded(blake2_128)
|
|
}
|
|
fn blake2_256(&self) -> [u8; 32] {
|
|
self.using_encoded(blake2_256)
|
|
}
|
|
fn twox_128(&self) -> [u8; 16] {
|
|
self.using_encoded(twox_128)
|
|
}
|
|
fn twox_256(&self) -> [u8; 32] {
|
|
self.using_encoded(twox_256)
|
|
}
|
|
fn twox_64_concat(&self) -> Vec<u8> {
|
|
self.using_encoded(Twox64Concat::hash)
|
|
}
|
|
}
|
|
|
|
/// Hasher to use to hash keys to insert to storage.
|
|
pub trait StorageHasher: 'static {
|
|
type Output: AsRef<[u8]>;
|
|
fn hash(x: &[u8]) -> Self::Output;
|
|
}
|
|
|
|
/// Hash storage keys with `concat(twox64(key), key)`
|
|
pub struct Twox64Concat;
|
|
impl StorageHasher for Twox64Concat {
|
|
type Output = Vec<u8>;
|
|
fn hash(x: &[u8]) -> Vec<u8> {
|
|
twox_64(x)
|
|
.iter()
|
|
.chain(x.into_iter())
|
|
.cloned()
|
|
.collect::<Vec<_>>()
|
|
}
|
|
}
|
|
|
|
/// Hash storage keys with blake2 128
|
|
pub struct Blake2_128;
|
|
impl StorageHasher for Blake2_128 {
|
|
type Output = [u8; 16];
|
|
fn hash(x: &[u8]) -> [u8; 16] {
|
|
blake2_128(x)
|
|
}
|
|
}
|
|
|
|
/// Hash storage keys with blake2 256
|
|
pub struct Blake2_256;
|
|
impl StorageHasher for Blake2_256 {
|
|
type Output = [u8; 32];
|
|
fn hash(x: &[u8]) -> [u8; 32] {
|
|
blake2_256(x)
|
|
}
|
|
}
|
|
|
|
/// Hash storage keys with twox 128
|
|
pub struct Twox128;
|
|
impl StorageHasher for Twox128 {
|
|
type Output = [u8; 16];
|
|
fn hash(x: &[u8]) -> [u8; 16] {
|
|
twox_128(x)
|
|
}
|
|
}
|
|
|
|
/// Hash storage keys with twox 256
|
|
pub struct Twox256;
|
|
impl StorageHasher for Twox256 {
|
|
type Output = [u8; 32];
|
|
fn hash(x: &[u8]) -> [u8; 32] {
|
|
twox_256(x)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_twox_64_concat() {
|
|
let r = Twox64Concat::hash(b"foo");
|
|
assert_eq!(r.split_at(8), (&twox_128(b"foo")[..8], &b"foo"[..]))
|
|
}
|
|
}
|