Trait diem_crypto::hash::TestOnlyHash[][src]

pub trait TestOnlyHash {
    fn test_only_hash(&self) -> HashValue;
}

Provides a test_only_hash() method that can be used in tests on types that implement serde::Serialize.

Example

use diem_crypto::hash::TestOnlyHash;

b"hello world".test_only_hash();

Required methods

fn test_only_hash(&self) -> HashValue[src]

Generates a hash used only for tests.

Loading content...

Implementors

Loading content...