pub(crate) fn generate_uuid_string_from_data(
key: &str,
data: &[String],
) -> String
Expand description
Generates a UUID string from the provided key and data using BLAKE2b
hashing.
§Arguments
key
: A string slice that is used as part of the hash function input.data
: A vector of strings which will be included in theBLAKE2b
hash computation.
§Returns
A UUID string generated from the BLAKE2b
hash of the concatenated data with the key.