[][src]Function monocypher::hashing::blake2b::easy

pub fn easy(data: &[u8]) -> [u8; 64]

Simple function to hash the input data.

Example

use monocypher::hashing::blake2b::easy;

let hash = easy("tohash".as_bytes());