Trait ink_env::hash::HashOutput

source ·
pub trait HashOutput: Sealed {
    type Type: Default;
}
Expand description

The output type of built-in cryptographic hash functions.

Required Associated Types§

source

type Type: Default

The output type of the crypto hash.

This should be a byte array with some constant size such as [u8; 32].

Implementors§