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

pub fn general(data: &[u8], key: &[u8]) -> [u8; 64]

Function to hash the input data with an additional key.

Example

use monocypher::hashing::blake2b::general;

let hash = general("tohash".as_bytes(), "key".as_bytes());