pub(crate) fn generate_uuid_string_from_data(
    key: &str,
    data: &[String],
) -> StringExpand 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 theBLAKE2bhash computation.
§Returns
A UUID string generated from the BLAKE2b hash of the concatenated data with the key.